Skip to content

Commit

Permalink
More properties
Browse files Browse the repository at this point in the history
  • Loading branch information
KuechA authored and oxisto committed Nov 24, 2023
1 parent ebd0364 commit 3451a84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ abstract class ValueDeclaration : Declaration(), HasType {
}
}

var aliases = mutableSetOf<Node>()

override var assignedTypes: Set<Type> = mutableSetOf()
set(value) {
if (field == value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ open class Reference : Expression(), HasType.TypeObserver {
value.registerTypeObserver(this)
}
}
// set the access

var aliases = mutableSetOf<Node>()

/**
* Is this reference used for writing data instead of just reading it? Determines dataflow
* direction
Expand Down

0 comments on commit 3451a84

Please sign in to comment.