Skip to content

Commit

Permalink
Merge pull request #9 from joker1007/add-__todo__
Browse files Browse the repository at this point in the history
feat: add `__todo__` builtin type
  • Loading branch information
joker1007 authored Jan 30, 2024
2 parents b28e181 + 055532e commit 28fde69
Show file tree
Hide file tree
Showing 4 changed files with 2,254 additions and 2,164 deletions.
1 change: 1 addition & 0 deletions grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ module.exports = grammar({
"bool",
"class",
"untyped",
"__todo__",
"nil",
"top",
"bot",
Expand Down
4 changes: 4 additions & 0 deletions src/grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@
"type": "STRING",
"value": "untyped"
},
{
"type": "STRING",
"value": "__todo__"
},
{
"type": "STRING",
"value": "nil"
Expand Down
4 changes: 4 additions & 0 deletions src/node-types.json
Original file line number Diff line number Diff line change
Expand Up @@ -2119,6 +2119,10 @@
"type": "^",
"named": false
},
{
"type": "__todo__",
"named": false
},
{
"type": "`",
"named": false
Expand Down
Loading

0 comments on commit 28fde69

Please sign in to comment.