Skip to content

Commit

Permalink
use qualified identifier instead of type ID
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Dec 15, 2020
1 parent d94a56b commit 17fb8ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/interpreter/value.go
Original file line number Diff line number Diff line change
Expand Up @@ -5412,8 +5412,8 @@ func (v *CompositeValue) DynamicType(interpreter *Interpreter) DynamicType {

func (v *CompositeValue) StaticType() StaticType {
return CompositeStaticType{
Location: v.Location,
TypeID: v.TypeID(),
Location: v.Location,
QualifiedIdentifier: v.QualifiedIdentifier,
}
}

Expand Down

0 comments on commit 17fb8ea

Please sign in to comment.