diff --git a/src/eval.odin b/src/eval.odin index 29c26c8..c431be0 100644 --- a/src/eval.odin +++ b/src/eval.odin @@ -6,9 +6,9 @@ import "core:strings" // Tree-walking evaluator for the pure-expression core of SPEC.md. Deliberately // scoped out for this pass (each needs real design/OS decisions this project -// hasn't made yet): `async`, `cached`, `import`, `serialize`/`serialize_file`/ -// `sha256`, `#context`, `Bytes`/`File`, and the static-vs-runtime distinction -// for `check`/`static_check` (both just run as runtime checks here). +// hasn't made yet): `cached`, `import`, `#context`, and the static-vs-runtime +// distinction for `check`/`static_check` (both just run as runtime checks +// here). // // The two mechanisms that make omission work: // - A bare Hole makes its *enclosing hard-boundary slot* (ยง7) become a diff --git a/src/parser.odin b/src/parser.odin index c6ed046..3ebc091 100644 --- a/src/parser.odin +++ b/src/parser.odin @@ -201,7 +201,7 @@ push_binary :: proc(p: ^Parser, left: Node_Idx, op: Node_Idx, right: Node_Idx) - } // Wraps one child under `kind`, spanning from `kw_span`'s start to the child's end - -// the shape shared by func/asfunc/asfuncstatic/import/serialize/serialize_file/sha256/cached/async. +// the shape shared by func/asfunc/asfuncstatic/import/sha256/cached/async. @(private = "file") push_wrapped :: proc(p: ^Parser, kind: Node_Kind, kw_span: Span, child: Node_Idx) -> Node_Idx { start, count := push_children(p.ast, []Node_Idx{child})