compiler, runtime, common, documentation: Refactor Type System

The type system (and the value system) now include attributes
for each type (things like direction, const-ness).

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-04-13 23:53:31 -04:00
parent 35b2537754
commit 94086c8e17
34 changed files with 690 additions and 552 deletions
+4 -4
View File
@@ -39,8 +39,8 @@ import P4Lang
}
};
"""
let x = { (tipe: P4TypeAttributed) -> Bool in
switch tipe.type {
let x = { (tipe: P4Type) -> Bool in
switch tipe.dataType() {
case let c as Control: c.name == "simple"
default: false
}
@@ -73,8 +73,8 @@ import P4Lang
};
"""
let filter = { (tipe: P4TypeAttributed) -> Bool in
switch tipe.type {
let filter = { (tipe: P4Type) -> Bool in
switch tipe.dataType() {
case let c as Control: c.name == "simple" || c.name == "complex"
default: false
}