(name: string, sourceSpan?: ParseSourceSpan | null)
| 220 | abstract clone(): Expression; |
| 221 | |
| 222 | prop(name: string, sourceSpan?: ParseSourceSpan | null): ReadPropExpr { |
| 223 | return new ReadPropExpr(this, name, null, sourceSpan); |
| 224 | } |
| 225 | |
| 226 | key(index: Expression, type?: Type | null, sourceSpan?: ParseSourceSpan | null): ReadKeyExpr { |
| 227 | return new ReadKeyExpr(this, index, type, sourceSpan); |
no outgoing calls
no test coverage detected
searching dependent graphs…