(index: Expression, type?: Type | null, sourceSpan?: ParseSourceSpan | null)
| 224 | } |
| 225 | |
| 226 | key(index: Expression, type?: Type | null, sourceSpan?: ParseSourceSpan | null): ReadKeyExpr { |
| 227 | return new ReadKeyExpr(this, index, type, sourceSpan); |
| 228 | } |
| 229 | |
| 230 | callFn( |
| 231 | params: Expression[], |