TypeOf returns the resolved semantic type of an expression node.
(v semantic.Node)
| 150 | |
| 151 | // TypeOf returns the resolved semantic type of an expression node. |
| 152 | func (*Functions) TypeOf(v semantic.Node) (semantic.Type, error) { |
| 153 | return semantic.TypeOf(v) |
| 154 | } |
| 155 | |
| 156 | // IsStorageType returns true if ty can be used as a storage type. |
| 157 | func (*Functions) IsStorageType(ty semantic.Type) bool { |
no outgoing calls