IsChecked returns whether the Ast value has been successfully type-checked.
()
| 77 | |
| 78 | // IsChecked returns whether the Ast value has been successfully type-checked. |
| 79 | func (ast *Ast) IsChecked() bool { |
| 80 | return ast.NativeRep().IsChecked() |
| 81 | } |
| 82 | |
| 83 | // SourceInfo returns character offset and newline position information about expression elements. |
| 84 | func (ast *Ast) SourceInfo() *exprpb.SourceInfo { |