IsChecked returns whether the Ast value has been successfully type-checked.
()
| 72 | |
| 73 | // IsChecked returns whether the Ast value has been successfully type-checked. |
| 74 | func (ast *Ast) IsChecked() bool { |
| 75 | return ast.NativeRep().IsChecked() |
| 76 | } |
| 77 | |
| 78 | // SourceInfo returns character offset and newline position information about expression elements. |
| 79 | func (ast *Ast) SourceInfo() *exprpb.SourceInfo { |