Implement tuples with (i32, string) syntax#289
Open
nbeerbower wants to merge 1 commit into
Open
Conversation
Add first-class tuple support across interpreter and compiler: - AST: Add TYPE_TUPLE and EXPR_TUPLE_LITERAL with element_types array - Parser: Parse tuple type syntax (type1, type2) and literal syntax (val1, val2) - Parser: Handle .0, .1 numeric property access for tuple indexing - Interpreter: Add VAL_TUPLE, Tuple struct, and tuple operations - Interpreter: Support tuple type coercion for function params/returns - Compiler: Add CHECKED_TUPLE, code generation for tuple literals and access - Runtime: Add HML_VAL_TUPLE, HmlTuple struct, and hml_tuple_get - Bundler: Handle EXPR_TUPLE_LITERAL in dependency collection - Parity test: tests/parity/language/tuples.hml covering all tuple features Usage: let pair = (42, "answer"); let typed: (i32, string) = (100, "hello"); print(pair.0); // 42 print(pair[1]); // answer print(pair.length); // 2
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.
Add first-class tuple support across interpreter and compiler:
Usage:
let pair = (42, "answer");
let typed: (i32, string) = (100, "hello");
print(pair.0); // 42
print(pair[1]); // answer
print(pair.length); // 2