Node returns the underlying omni AST node. May be nil if the segment failed to parse cleanly but errors were tolerated by the caller.
()
| 29 | // Node returns the underlying omni AST node. May be nil if the segment |
| 30 | // failed to parse cleanly but errors were tolerated by the caller. |
| 31 | func (a *omniAST) Node() ast.Node { |
| 32 | return a.node |
| 33 | } |
| 34 | |
| 35 | // parseDorisStatements is the ParseStatementsFunc for Doris. |
| 36 | // Returns []ParsedStatement with both text and AST populated. |
no outgoing calls