Skip to content

Commit

Permalink
Add in language extension for Python-type fields
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Ballance <matt.ballance@gmail.com>
  • Loading branch information
mballance committed Nov 11, 2023
1 parent c4df554 commit b49fa2d
Show file tree
Hide file tree
Showing 23 changed files with 5,980 additions and 7,088 deletions.
1 change: 1 addition & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"name": "Default",
"includePath": [
"${default}",
"src",
"packages/debug-mgr/src/include",
"src/include",
"tests/src",
Expand Down
1 change: 1 addition & 0 deletions ast/datatype.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ classes:
data:
- has_range: bool
- in_range: list<string>

- DataTypeUserDefined:
super: DataType
data:
Expand Down
4 changes: 4 additions & 0 deletions ast/linking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ classes:
- imports:
- type: UP<SymbolImportSpec>
- is_ctor: false
- opaque:
- type: bool
- is_ctor: false
- init: false

- SymbolEnumScope:
super: SymbolScope
Expand Down
5 changes: 5 additions & 0 deletions ast/typescope.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ classes:
- params:
type: UP<TemplateParamDeclList>
is_ctor: false
- opaque:
type: bool
is_ctor: false
init: false




11 changes: 10 additions & 1 deletion src/.antlr/PSSLexer.interp

Large diffs are not rendered by default.

1,446 changes: 895 additions & 551 deletions src/.antlr/PSSLexer.java

Large diffs are not rendered by default.

Loading

0 comments on commit b49fa2d

Please sign in to comment.