Conversation
Changed issue body headers from h5 to h4 for short issues (1–2 headers) and h3 when there are 3 or more. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Reorganized `TokenType` enum with all 31 Stage 2 token IDs allocated upfront in semantic groups. Rewrote `scanIdentifier()` to full-accumulation approach with keyword lookup table, resolving the `d`-in-`round` problem. Added comparison (`>`, `>=`, `<`, `<=`, `=`), explode (`!`, `!!`, `!p`), and comma (`,`) scanning to the operator switch. Defined canonical `ComparePoint` type in `types.ts` with `value: ASTNode` for computed thresholds. Added `parseComparePoint()` and `isComparePointAhead()` parser utilities for Stage 2 modifier parsers. Added `STAGE2.md` design document with all cross-cutting decisions from consilium review. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Shared infrastructure for all Stage 2 features. Prerequisite for #35-#41.
TokenTypeenum with 31 tokens in semantic groups (all Stage 2 IDs allocated)scanIdentifier()to full-accumulation with keyword lookup tableComparePointtype withvalue: ASTNodeparseComparePoint()andisComparePointAhead()parser utilitiesSTAGE2.mddesign document with consilium review decisionsCloses #34
Drafted with AI assistance