From 75cb1dfa86487d7f9cb975194210be8b40bee1e2 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 30 May 2026 08:20:55 +1000 Subject: [PATCH] Config tweak --- .vscode/settings.json | 6 +++--- source/toy_ast.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7194ef7..27fa346 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,14 +1,14 @@ { "better-todo-tree.filtering.includeGlobs": [ "**/repl/**", - "**/scripts/**", + "**/examples/**", "**/source/**", - "**/tests/**", - "**/tools/**", + "**/tests/**" ], "better-todo-tree.filtering.excludeGlobs": [ "**/obj/**", "**/out/**", + "**/docs/**" ], "better-todo-tree.general.tags": [ "URGENT", diff --git a/source/toy_ast.h b/source/toy_ast.h index 0e79887..d7c284c 100644 --- a/source/toy_ast.h +++ b/source/toy_ast.h @@ -97,7 +97,7 @@ typedef enum Toy_AstFlag { //the root AST type 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; bool innerScope; Toy_Ast* child; //begin encoding the line