Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 75cb1dfa86 |
Vendored
+3
-3
@@ -1,14 +1,14 @@
|
|||||||
{
|
{
|
||||||
"better-todo-tree.filtering.includeGlobs": [
|
"better-todo-tree.filtering.includeGlobs": [
|
||||||
"**/repl/**",
|
"**/repl/**",
|
||||||
"**/scripts/**",
|
"**/examples/**",
|
||||||
"**/source/**",
|
"**/source/**",
|
||||||
"**/tests/**",
|
"**/tests/**"
|
||||||
"**/tools/**",
|
|
||||||
],
|
],
|
||||||
"better-todo-tree.filtering.excludeGlobs": [
|
"better-todo-tree.filtering.excludeGlobs": [
|
||||||
"**/obj/**",
|
"**/obj/**",
|
||||||
"**/out/**",
|
"**/out/**",
|
||||||
|
"**/docs/**"
|
||||||
],
|
],
|
||||||
"better-todo-tree.general.tags": [
|
"better-todo-tree.general.tags": [
|
||||||
"URGENT",
|
"URGENT",
|
||||||
|
|||||||
+1
-1
@@ -97,7 +97,7 @@ typedef enum Toy_AstFlag {
|
|||||||
//the root AST type
|
//the root AST type
|
||||||
typedef union Toy_Ast Toy_Ast;
|
typedef union Toy_Ast Toy_Ast;
|
||||||
|
|
||||||
typedef struct Toy_AstBlock {
|
typedef struct Toy_AstBlock { //TODO: optimize away single-line blocks in the AST
|
||||||
Toy_AstType type;
|
Toy_AstType type;
|
||||||
bool innerScope;
|
bool innerScope;
|
||||||
Toy_Ast* child; //begin encoding the line
|
Toy_Ast* child; //begin encoding the line
|
||||||
|
|||||||
Reference in New Issue
Block a user