mirror of
https://github.com/pikami/cosmium.git
synced 2026-08-11 07:37:00 +01:00
11775 lines
318 KiB
Go
11775 lines
318 KiB
Go
// Code generated by pigeon; DO NOT EDIT.
|
|
|
|
package nosql
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
"os"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
"unicode"
|
|
"unicode/utf8"
|
|
|
|
"github.com/pikami/cosmium/parsers"
|
|
)
|
|
|
|
func makeSelectStmt(
|
|
columns, fromClause, joinItems,
|
|
whereClause interface{}, distinctClause interface{},
|
|
count interface{}, groupByClause interface{}, orderList interface{},
|
|
offsetClause interface{},
|
|
) (parsers.SelectStmt, error) {
|
|
selectStmt := parsers.SelectStmt{
|
|
SelectItems: columns.([]parsers.SelectItem),
|
|
}
|
|
|
|
if fromTable, ok := fromClause.(parsers.Table); ok {
|
|
selectStmt.Table = fromTable
|
|
}
|
|
|
|
if joinItemsArray, ok := joinItems.([]interface{}); ok && len(joinItemsArray) > 0 {
|
|
selectStmt.JoinItems = make([]parsers.JoinItem, len(joinItemsArray))
|
|
for i, joinItem := range joinItemsArray {
|
|
selectStmt.JoinItems[i] = joinItem.(parsers.JoinItem)
|
|
}
|
|
}
|
|
|
|
switch v := whereClause.(type) {
|
|
case parsers.ComparisonExpression, parsers.LogicalExpression, parsers.Constant, parsers.SelectItem:
|
|
selectStmt.Filters = v
|
|
}
|
|
|
|
if distinctClause != nil {
|
|
selectStmt.Distinct = true
|
|
}
|
|
|
|
if n, ok := count.(int); ok {
|
|
selectStmt.Count = n
|
|
}
|
|
|
|
if offsetArr, ok := offsetClause.([]interface{}); ok && len(offsetArr) == 2 {
|
|
if n, ok := offsetArr[0].(int); ok {
|
|
selectStmt.Offset = n
|
|
}
|
|
|
|
if n, ok := offsetArr[1].(int); ok {
|
|
selectStmt.Count = n
|
|
}
|
|
}
|
|
|
|
if orderExpressions, ok := orderList.([]parsers.OrderExpression); ok {
|
|
selectStmt.OrderExpressions = orderExpressions
|
|
}
|
|
|
|
if groupByClause != nil {
|
|
selectStmt.GroupBy = groupByClause.([]parsers.SelectItem)
|
|
}
|
|
|
|
return selectStmt, nil
|
|
}
|
|
|
|
func makeJoin(table interface{}, column interface{}) (parsers.JoinItem, error) {
|
|
joinItem := parsers.JoinItem{}
|
|
|
|
if selectItem, isSelectItem := column.(parsers.SelectItem); isSelectItem {
|
|
joinItem.SelectItem = selectItem
|
|
joinItem.Table.Value = selectItem.Alias
|
|
}
|
|
|
|
if tableTyped, isTable := table.(parsers.Table); isTable {
|
|
joinItem.Table = tableTyped
|
|
}
|
|
|
|
return joinItem, nil
|
|
}
|
|
|
|
func makeSelectItem(name interface{}, path interface{}, selectItemType parsers.SelectItemType) (parsers.SelectItem, error) {
|
|
ps := path.([]interface{})
|
|
|
|
paths := make([]string, 1)
|
|
paths[0] = name.(string)
|
|
for _, p := range ps {
|
|
paths = append(paths, p.(string))
|
|
}
|
|
|
|
return parsers.SelectItem{Path: paths, Type: selectItemType}, nil
|
|
}
|
|
|
|
func makeColumnList(column interface{}, other_columns interface{}) ([]parsers.SelectItem, error) {
|
|
collsAsArray := other_columns.([]interface{})
|
|
columnList := make([]parsers.SelectItem, len(collsAsArray)+1)
|
|
columnList[0] = column.(parsers.SelectItem)
|
|
|
|
for i, v := range collsAsArray {
|
|
if col, ok := v.(parsers.SelectItem); ok {
|
|
columnList[i+1] = col
|
|
}
|
|
}
|
|
|
|
return columnList, nil
|
|
}
|
|
|
|
func makeSelectArray(columns interface{}) (parsers.SelectItem, error) {
|
|
return parsers.SelectItem{
|
|
SelectItems: columns.([]parsers.SelectItem),
|
|
Type: parsers.SelectItemTypeArray,
|
|
}, nil
|
|
}
|
|
|
|
func makeSelectObject(field interface{}, other_fields interface{}) (parsers.SelectItem, error) {
|
|
fieldsAsArray := other_fields.([]interface{})
|
|
fieldsList := make([]parsers.SelectItem, len(fieldsAsArray)+1)
|
|
fieldsList[0] = field.(parsers.SelectItem)
|
|
|
|
for i, v := range fieldsAsArray {
|
|
if col, ok := v.(parsers.SelectItem); ok {
|
|
fieldsList[i+1] = col
|
|
}
|
|
}
|
|
|
|
return parsers.SelectItem{
|
|
SelectItems: fieldsList,
|
|
Type: parsers.SelectItemTypeObject,
|
|
}, nil
|
|
}
|
|
|
|
func makeOrderByClause(ex1 interface{}, others interface{}) ([]parsers.OrderExpression, error) {
|
|
othersArray := others.([]interface{})
|
|
orderList := make([]parsers.OrderExpression, len(othersArray)+1)
|
|
orderList[0] = ex1.(parsers.OrderExpression)
|
|
|
|
for i, v := range othersArray {
|
|
if col, ok := v.(parsers.OrderExpression); ok {
|
|
orderList[i+1] = col
|
|
}
|
|
}
|
|
|
|
return orderList, nil
|
|
}
|
|
|
|
func makeOrderExpression(field interface{}, order interface{}) (parsers.OrderExpression, error) {
|
|
value := parsers.OrderExpression{
|
|
SelectItem: field.(parsers.SelectItem),
|
|
Direction: parsers.OrderDirectionAsc,
|
|
}
|
|
|
|
if orderValue, ok := order.(parsers.OrderDirection); ok {
|
|
value.Direction = orderValue
|
|
}
|
|
|
|
return value, nil
|
|
}
|
|
|
|
func createFunctionCall(functionType parsers.FunctionCallType, arguments []interface{}) (parsers.FunctionCall, error) {
|
|
return parsers.FunctionCall{Type: functionType, Arguments: arguments}, nil
|
|
}
|
|
|
|
func joinStrings(array []interface{}) string {
|
|
var stringsArray []string
|
|
for _, elem := range array {
|
|
str, ok := elem.(string)
|
|
if !ok {
|
|
continue
|
|
}
|
|
stringsArray = append(stringsArray, str)
|
|
}
|
|
|
|
return strings.Join(stringsArray, "")
|
|
}
|
|
|
|
func combineExpressions(ex1 interface{}, exs interface{}, operation parsers.LogicalExpressionType) (interface{}, error) {
|
|
if exs == nil || len(exs.([]interface{})) < 1 {
|
|
return ex1, nil
|
|
}
|
|
|
|
return parsers.LogicalExpression{
|
|
Expressions: append([]interface{}{ex1}, exs.([]interface{})...),
|
|
Operation: operation,
|
|
}, nil
|
|
}
|
|
|
|
func makeMathExpression(left interface{}, operations interface{}) (interface{}, error) {
|
|
if operations == nil || len(operations.([]interface{})) == 0 {
|
|
return left, nil
|
|
}
|
|
|
|
result := left.(parsers.SelectItem)
|
|
ops := operations.([]interface{})
|
|
|
|
for _, op := range ops {
|
|
opData := op.([]interface{})
|
|
operation := opData[0].(string)
|
|
right := opData[1].(parsers.SelectItem)
|
|
|
|
result = parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeBinaryExpression,
|
|
Value: parsers.BinaryExpression{
|
|
Left: result,
|
|
Right: right,
|
|
Operation: operation,
|
|
},
|
|
}
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
var g = &grammar{
|
|
rules: []*rule{
|
|
{
|
|
name: "Input",
|
|
pos: position{line: 209, col: 1, offset: 5961},
|
|
expr: &actionExpr{
|
|
pos: position{line: 209, col: 10, offset: 5970},
|
|
run: (*parser).callonInput1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 209, col: 10, offset: 5970},
|
|
label: "selectStmt",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 209, col: 21, offset: 5981},
|
|
name: "SelectStmt",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectStmt",
|
|
pos: position{line: 213, col: 1, offset: 6024},
|
|
expr: &actionExpr{
|
|
pos: position{line: 213, col: 15, offset: 6038},
|
|
run: (*parser).callonSelectStmt1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 213, col: 15, offset: 6038},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 213, col: 15, offset: 6038},
|
|
name: "Select",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 213, col: 22, offset: 6045},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 214, col: 5, offset: 6052},
|
|
label: "distinctClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 214, col: 20, offset: 6067},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 214, col: 20, offset: 6067},
|
|
name: "DistinctClause",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 214, col: 36, offset: 6083},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 215, col: 5, offset: 6090},
|
|
label: "topClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 215, col: 15, offset: 6100},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 215, col: 15, offset: 6100},
|
|
name: "TopClause",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 215, col: 26, offset: 6111},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 216, col: 5, offset: 6118},
|
|
label: "columns",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 216, col: 13, offset: 6126},
|
|
name: "Selection",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 216, col: 23, offset: 6136},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 217, col: 5, offset: 6143},
|
|
label: "fromClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 217, col: 16, offset: 6154},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 217, col: 16, offset: 6154},
|
|
name: "FromClause",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 217, col: 28, offset: 6166},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 218, col: 5, offset: 6173},
|
|
label: "joinClauses",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 218, col: 17, offset: 6185},
|
|
expr: &actionExpr{
|
|
pos: position{line: 218, col: 18, offset: 6186},
|
|
run: (*parser).callonSelectStmt22,
|
|
expr: &seqExpr{
|
|
pos: position{line: 218, col: 18, offset: 6186},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 218, col: 18, offset: 6186},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 218, col: 21, offset: 6189},
|
|
label: "join",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 218, col: 26, offset: 6194},
|
|
name: "JoinClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 218, col: 60, offset: 6228},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 219, col: 5, offset: 6235},
|
|
label: "whereClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 219, col: 17, offset: 6247},
|
|
expr: &actionExpr{
|
|
pos: position{line: 219, col: 18, offset: 6248},
|
|
run: (*parser).callonSelectStmt30,
|
|
expr: &seqExpr{
|
|
pos: position{line: 219, col: 18, offset: 6248},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 219, col: 18, offset: 6248},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 219, col: 21, offset: 6251},
|
|
name: "Where",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 219, col: 27, offset: 6257},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 219, col: 30, offset: 6260},
|
|
label: "condition",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 219, col: 40, offset: 6270},
|
|
name: "Condition",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 220, col: 5, offset: 6312},
|
|
label: "groupByClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 220, col: 19, offset: 6326},
|
|
expr: &actionExpr{
|
|
pos: position{line: 220, col: 20, offset: 6327},
|
|
run: (*parser).callonSelectStmt39,
|
|
expr: &seqExpr{
|
|
pos: position{line: 220, col: 20, offset: 6327},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 220, col: 20, offset: 6327},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 220, col: 23, offset: 6330},
|
|
name: "GroupBy",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 220, col: 31, offset: 6338},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 220, col: 34, offset: 6341},
|
|
label: "columns",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 220, col: 42, offset: 6349},
|
|
name: "ColumnList",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 221, col: 5, offset: 6390},
|
|
label: "orderByClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 221, col: 19, offset: 6404},
|
|
expr: &actionExpr{
|
|
pos: position{line: 221, col: 20, offset: 6405},
|
|
run: (*parser).callonSelectStmt48,
|
|
expr: &seqExpr{
|
|
pos: position{line: 221, col: 20, offset: 6405},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 221, col: 20, offset: 6405},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 221, col: 23, offset: 6408},
|
|
label: "order",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 221, col: 29, offset: 6414},
|
|
name: "OrderByClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 222, col: 5, offset: 6456},
|
|
label: "offsetClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 222, col: 18, offset: 6469},
|
|
expr: &actionExpr{
|
|
pos: position{line: 222, col: 19, offset: 6470},
|
|
run: (*parser).callonSelectStmt55,
|
|
expr: &seqExpr{
|
|
pos: position{line: 222, col: 19, offset: 6470},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 222, col: 19, offset: 6470},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 222, col: 22, offset: 6473},
|
|
label: "offset",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 222, col: 29, offset: 6480},
|
|
name: "OffsetClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "DistinctClause",
|
|
pos: position{line: 227, col: 1, offset: 6675},
|
|
expr: &litMatcher{
|
|
pos: position{line: 227, col: 19, offset: 6693},
|
|
val: "distinct",
|
|
ignoreCase: true,
|
|
want: "\"DISTINCT\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "TopClause",
|
|
pos: position{line: 229, col: 1, offset: 6706},
|
|
expr: &actionExpr{
|
|
pos: position{line: 229, col: 14, offset: 6719},
|
|
run: (*parser).callonTopClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 229, col: 14, offset: 6719},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 229, col: 14, offset: 6719},
|
|
name: "Top",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 229, col: 18, offset: 6723},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 229, col: 21, offset: 6726},
|
|
label: "count",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 229, col: 27, offset: 6732},
|
|
name: "Integer",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "FromClause",
|
|
pos: position{line: 233, col: 1, offset: 6767},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 233, col: 15, offset: 6781},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 233, col: 15, offset: 6781},
|
|
run: (*parser).callonFromClause2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 233, col: 15, offset: 6781},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 233, col: 15, offset: 6781},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 233, col: 20, offset: 6786},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 233, col: 23, offset: 6789},
|
|
label: "table",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 233, col: 29, offset: 6795},
|
|
name: "TableName",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 233, col: 39, offset: 6805},
|
|
label: "selectItem",
|
|
expr: &actionExpr{
|
|
pos: position{line: 233, col: 51, offset: 6817},
|
|
run: (*parser).callonFromClause9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 233, col: 51, offset: 6817},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 233, col: 51, offset: 6817},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 233, col: 54, offset: 6820},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 233, col: 57, offset: 6823},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 233, col: 60, offset: 6826},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 233, col: 67, offset: 6833},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 242, col: 5, offset: 7086},
|
|
run: (*parser).callonFromClause16,
|
|
expr: &seqExpr{
|
|
pos: position{line: 242, col: 5, offset: 7086},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 242, col: 5, offset: 7086},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 242, col: 10, offset: 7091},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 242, col: 13, offset: 7094},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 242, col: 20, offset: 7101},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 249, col: 5, offset: 7309},
|
|
run: (*parser).callonFromClause22,
|
|
expr: &seqExpr{
|
|
pos: position{line: 249, col: 5, offset: 7309},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 249, col: 5, offset: 7309},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 249, col: 10, offset: 7314},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 249, col: 13, offset: 7317},
|
|
label: "subQuery",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 249, col: 22, offset: 7326},
|
|
name: "SubQuerySelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SubQuery",
|
|
pos: position{line: 258, col: 1, offset: 7528},
|
|
expr: &actionExpr{
|
|
pos: position{line: 258, col: 13, offset: 7540},
|
|
run: (*parser).callonSubQuery1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 258, col: 13, offset: 7540},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 258, col: 13, offset: 7540},
|
|
label: "exists",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 258, col: 20, offset: 7547},
|
|
expr: &actionExpr{
|
|
pos: position{line: 258, col: 21, offset: 7548},
|
|
run: (*parser).callonSubQuery5,
|
|
expr: &seqExpr{
|
|
pos: position{line: 258, col: 21, offset: 7548},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 258, col: 21, offset: 7548},
|
|
label: "exists",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 258, col: 28, offset: 7555},
|
|
name: "Exists",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 258, col: 35, offset: 7562},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 258, col: 63, offset: 7590},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 258, col: 67, offset: 7594},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 258, col: 70, offset: 7597},
|
|
label: "selectStmt",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 258, col: 81, offset: 7608},
|
|
name: "SelectStmt",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 258, col: 92, offset: 7619},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 258, col: 95, offset: 7622},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SubQuerySelectItem",
|
|
pos: position{line: 267, col: 1, offset: 7834},
|
|
expr: &actionExpr{
|
|
pos: position{line: 267, col: 23, offset: 7856},
|
|
run: (*parser).callonSubQuerySelectItem1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 267, col: 23, offset: 7856},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 267, col: 23, offset: 7856},
|
|
label: "subQuery",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 267, col: 32, offset: 7865},
|
|
name: "SubQuery",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 267, col: 41, offset: 7874},
|
|
label: "asClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 267, col: 50, offset: 7883},
|
|
expr: &actionExpr{
|
|
pos: position{line: 267, col: 51, offset: 7884},
|
|
run: (*parser).callonSubQuerySelectItem7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 267, col: 51, offset: 7884},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 267, col: 51, offset: 7884},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 267, col: 54, offset: 7887},
|
|
label: "alias",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 267, col: 60, offset: 7893},
|
|
name: "AsClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "JoinClause",
|
|
pos: position{line: 280, col: 1, offset: 8178},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 280, col: 15, offset: 8192},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 280, col: 15, offset: 8192},
|
|
run: (*parser).callonJoinClause2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 280, col: 15, offset: 8192},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 280, col: 15, offset: 8192},
|
|
name: "Join",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 280, col: 20, offset: 8197},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 280, col: 23, offset: 8200},
|
|
label: "table",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 280, col: 29, offset: 8206},
|
|
name: "TableName",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 280, col: 39, offset: 8216},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 280, col: 42, offset: 8219},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 280, col: 45, offset: 8222},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 280, col: 48, offset: 8225},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 280, col: 55, offset: 8232},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 282, col: 5, offset: 8293},
|
|
run: (*parser).callonJoinClause13,
|
|
expr: &seqExpr{
|
|
pos: position{line: 282, col: 5, offset: 8293},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 282, col: 5, offset: 8293},
|
|
name: "Join",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 282, col: 10, offset: 8298},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 282, col: 13, offset: 8301},
|
|
label: "subQuery",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 282, col: 22, offset: 8310},
|
|
name: "SubQuerySelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OffsetClause",
|
|
pos: position{line: 286, col: 1, offset: 8369},
|
|
expr: &actionExpr{
|
|
pos: position{line: 286, col: 17, offset: 8385},
|
|
run: (*parser).callonOffsetClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 286, col: 17, offset: 8385},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 286, col: 17, offset: 8385},
|
|
name: "Offset",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 286, col: 24, offset: 8392},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 286, col: 27, offset: 8395},
|
|
label: "offset",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 286, col: 34, offset: 8402},
|
|
name: "IntegerLiteral",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 286, col: 49, offset: 8417},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 286, col: 52, offset: 8420},
|
|
val: "limit",
|
|
ignoreCase: true,
|
|
want: "\"LIMIT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 286, col: 61, offset: 8429},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 286, col: 64, offset: 8432},
|
|
label: "limit",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 286, col: 70, offset: 8438},
|
|
name: "IntegerLiteral",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Selection",
|
|
pos: position{line: 290, col: 1, offset: 8553},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 290, col: 14, offset: 8566},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 290, col: 14, offset: 8566},
|
|
name: "SelectValueSpec",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 290, col: 32, offset: 8584},
|
|
name: "ColumnList",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 290, col: 45, offset: 8597},
|
|
name: "SelectAsterisk",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectAsterisk",
|
|
pos: position{line: 292, col: 1, offset: 8613},
|
|
expr: &actionExpr{
|
|
pos: position{line: 292, col: 19, offset: 8631},
|
|
run: (*parser).callonSelectAsterisk1,
|
|
expr: &litMatcher{
|
|
pos: position{line: 292, col: 19, offset: 8631},
|
|
val: "*",
|
|
ignoreCase: false,
|
|
want: "\"*\"",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ColumnList",
|
|
pos: position{line: 298, col: 1, offset: 8829},
|
|
expr: &actionExpr{
|
|
pos: position{line: 298, col: 15, offset: 8843},
|
|
run: (*parser).callonColumnList1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 298, col: 15, offset: 8843},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 298, col: 15, offset: 8843},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 298, col: 22, offset: 8850},
|
|
name: "ExpressionOrSelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 298, col: 45, offset: 8873},
|
|
label: "other_columns",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 298, col: 59, offset: 8887},
|
|
expr: &actionExpr{
|
|
pos: position{line: 298, col: 60, offset: 8888},
|
|
run: (*parser).callonColumnList7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 298, col: 60, offset: 8888},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 298, col: 60, offset: 8888},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 298, col: 63, offset: 8891},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 298, col: 67, offset: 8895},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 298, col: 70, offset: 8898},
|
|
label: "coll",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 298, col: 75, offset: 8903},
|
|
name: "ExpressionOrSelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ExpressionOrSelectItem",
|
|
pos: position{line: 302, col: 1, offset: 9002},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 302, col: 27, offset: 9028},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 302, col: 27, offset: 9028},
|
|
run: (*parser).callonExpressionOrSelectItem2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 302, col: 27, offset: 9028},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 302, col: 27, offset: 9028},
|
|
label: "expression",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 302, col: 38, offset: 9039},
|
|
name: "OrExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 302, col: 51, offset: 9052},
|
|
label: "asClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 302, col: 60, offset: 9061},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 302, col: 60, offset: 9061},
|
|
name: "AsClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 323, col: 5, offset: 9676},
|
|
run: (*parser).callonExpressionOrSelectItem9,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 323, col: 5, offset: 9676},
|
|
label: "item",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 323, col: 10, offset: 9681},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectValueSpec",
|
|
pos: position{line: 325, col: 1, offset: 9723},
|
|
expr: &actionExpr{
|
|
pos: position{line: 325, col: 20, offset: 9742},
|
|
run: (*parser).callonSelectValueSpec1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 325, col: 20, offset: 9742},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 325, col: 20, offset: 9742},
|
|
val: "value",
|
|
ignoreCase: true,
|
|
want: "\"VALUE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 325, col: 29, offset: 9751},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 325, col: 32, offset: 9754},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 325, col: 39, offset: 9761},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "TableName",
|
|
pos: position{line: 331, col: 1, offset: 9927},
|
|
expr: &actionExpr{
|
|
pos: position{line: 331, col: 14, offset: 9940},
|
|
run: (*parser).callonTableName1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 331, col: 14, offset: 9940},
|
|
label: "key",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 331, col: 18, offset: 9944},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectArray",
|
|
pos: position{line: 335, col: 1, offset: 10011},
|
|
expr: &actionExpr{
|
|
pos: position{line: 335, col: 16, offset: 10026},
|
|
run: (*parser).callonSelectArray1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 335, col: 16, offset: 10026},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 335, col: 16, offset: 10026},
|
|
val: "[",
|
|
ignoreCase: false,
|
|
want: "\"[\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 335, col: 20, offset: 10030},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 335, col: 23, offset: 10033},
|
|
label: "columns",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 335, col: 31, offset: 10041},
|
|
name: "ColumnList",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 335, col: 42, offset: 10052},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 335, col: 45, offset: 10055},
|
|
val: "]",
|
|
ignoreCase: false,
|
|
want: "\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectObject",
|
|
pos: position{line: 339, col: 1, offset: 10100},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 339, col: 17, offset: 10116},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 339, col: 17, offset: 10116},
|
|
run: (*parser).callonSelectObject2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 339, col: 17, offset: 10116},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 339, col: 17, offset: 10116},
|
|
val: "{",
|
|
ignoreCase: false,
|
|
want: "\"{\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 339, col: 21, offset: 10120},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 339, col: 24, offset: 10123},
|
|
label: "field",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 339, col: 30, offset: 10129},
|
|
name: "SelectObjectField",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 339, col: 48, offset: 10147},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 339, col: 51, offset: 10150},
|
|
label: "other_fields",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 339, col: 64, offset: 10163},
|
|
expr: &actionExpr{
|
|
pos: position{line: 339, col: 65, offset: 10164},
|
|
run: (*parser).callonSelectObject11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 339, col: 65, offset: 10164},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 339, col: 65, offset: 10164},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 339, col: 68, offset: 10167},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 339, col: 72, offset: 10171},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 339, col: 75, offset: 10174},
|
|
label: "coll",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 339, col: 80, offset: 10179},
|
|
name: "SelectObjectField",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 339, col: 120, offset: 10219},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 339, col: 123, offset: 10222},
|
|
val: "}",
|
|
ignoreCase: false,
|
|
want: "\"}\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 341, col: 5, offset: 10281},
|
|
run: (*parser).callonSelectObject20,
|
|
expr: &seqExpr{
|
|
pos: position{line: 341, col: 5, offset: 10281},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 341, col: 5, offset: 10281},
|
|
val: "{",
|
|
ignoreCase: false,
|
|
want: "\"{\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 341, col: 9, offset: 10285},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 341, col: 12, offset: 10288},
|
|
val: "}",
|
|
ignoreCase: false,
|
|
want: "\"}\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectObjectField",
|
|
pos: position{line: 348, col: 1, offset: 10435},
|
|
expr: &actionExpr{
|
|
pos: position{line: 348, col: 22, offset: 10456},
|
|
run: (*parser).callonSelectObjectField1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 348, col: 22, offset: 10456},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 348, col: 22, offset: 10456},
|
|
label: "name",
|
|
expr: &choiceExpr{
|
|
pos: position{line: 348, col: 28, offset: 10462},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 348, col: 28, offset: 10462},
|
|
name: "Identifier",
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 348, col: 41, offset: 10475},
|
|
run: (*parser).callonSelectObjectField6,
|
|
expr: &seqExpr{
|
|
pos: position{line: 348, col: 41, offset: 10475},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 348, col: 41, offset: 10475},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 348, col: 46, offset: 10480},
|
|
label: "key",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 348, col: 50, offset: 10484},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 348, col: 61, offset: 10495},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 348, col: 87, offset: 10521},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 348, col: 90, offset: 10524},
|
|
val: ":",
|
|
ignoreCase: false,
|
|
want: "\":\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 348, col: 94, offset: 10528},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 348, col: 97, offset: 10531},
|
|
label: "selectItem",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 348, col: 108, offset: 10542},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectProperty",
|
|
pos: position{line: 354, col: 1, offset: 10654},
|
|
expr: &actionExpr{
|
|
pos: position{line: 354, col: 19, offset: 10672},
|
|
run: (*parser).callonSelectProperty1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 354, col: 19, offset: 10672},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 354, col: 19, offset: 10672},
|
|
label: "name",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 354, col: 24, offset: 10677},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 354, col: 35, offset: 10688},
|
|
label: "path",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 354, col: 40, offset: 10693},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 354, col: 41, offset: 10694},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 354, col: 41, offset: 10694},
|
|
name: "DotFieldAccess",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 354, col: 58, offset: 10711},
|
|
name: "ArrayFieldAccess",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectItemWithAlias",
|
|
pos: position{line: 358, col: 1, offset: 10802},
|
|
expr: &actionExpr{
|
|
pos: position{line: 358, col: 24, offset: 10825},
|
|
run: (*parser).callonSelectItemWithAlias1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 358, col: 24, offset: 10825},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 358, col: 24, offset: 10825},
|
|
label: "selectItem",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 358, col: 35, offset: 10836},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 358, col: 46, offset: 10847},
|
|
label: "asClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 358, col: 55, offset: 10856},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 358, col: 55, offset: 10856},
|
|
name: "AsClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectItem",
|
|
pos: position{line: 366, col: 1, offset: 11023},
|
|
expr: &actionExpr{
|
|
pos: position{line: 366, col: 15, offset: 11037},
|
|
run: (*parser).callonSelectItem1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 366, col: 15, offset: 11037},
|
|
label: "selectItem",
|
|
expr: &choiceExpr{
|
|
pos: position{line: 366, col: 27, offset: 11049},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 366, col: 27, offset: 11049},
|
|
name: "SubQuerySelectItem",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 366, col: 48, offset: 11070},
|
|
name: "Literal",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 366, col: 58, offset: 11080},
|
|
name: "FunctionCall",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 366, col: 73, offset: 11095},
|
|
name: "SelectArray",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 366, col: 87, offset: 11109},
|
|
name: "SelectObject",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 366, col: 102, offset: 11124},
|
|
name: "SelectProperty",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AsClause",
|
|
pos: position{line: 386, col: 1, offset: 11649},
|
|
expr: &actionExpr{
|
|
pos: position{line: 386, col: 13, offset: 11661},
|
|
run: (*parser).callonAsClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 386, col: 13, offset: 11661},
|
|
exprs: []any{
|
|
&zeroOrOneExpr{
|
|
pos: position{line: 386, col: 13, offset: 11661},
|
|
expr: &seqExpr{
|
|
pos: position{line: 386, col: 14, offset: 11662},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 386, col: 14, offset: 11662},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 386, col: 17, offset: 11665},
|
|
name: "As",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 386, col: 22, offset: 11670},
|
|
name: "ws",
|
|
},
|
|
¬Expr{
|
|
pos: position{line: 386, col: 25, offset: 11673},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 386, col: 26, offset: 11674},
|
|
name: "ExcludedKeywords",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 386, col: 43, offset: 11691},
|
|
label: "alias",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 386, col: 49, offset: 11697},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ExcludedKeywords",
|
|
pos: position{line: 390, col: 1, offset: 11735},
|
|
expr: &seqExpr{
|
|
pos: position{line: 390, col: 21, offset: 11755},
|
|
exprs: []any{
|
|
&choiceExpr{
|
|
pos: position{line: 391, col: 5, offset: 11761},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 5, offset: 11761},
|
|
name: "Select",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 14, offset: 11770},
|
|
name: "Top",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 20, offset: 11776},
|
|
name: "As",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 25, offset: 11781},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 32, offset: 11788},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 37, offset: 11793},
|
|
name: "Join",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 44, offset: 11800},
|
|
name: "Exists",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 53, offset: 11809},
|
|
name: "Where",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 61, offset: 11817},
|
|
name: "And",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 67, offset: 11823},
|
|
name: "Or",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 72, offset: 11828},
|
|
name: "Not",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 391, col: 78, offset: 11834},
|
|
name: "Offset",
|
|
},
|
|
&seqExpr{
|
|
pos: position{line: 392, col: 6, offset: 11848},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 392, col: 6, offset: 11848},
|
|
val: "group",
|
|
ignoreCase: true,
|
|
want: "\"GROUP\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 392, col: 15, offset: 11857},
|
|
name: "wss",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 392, col: 19, offset: 11861},
|
|
val: "by",
|
|
ignoreCase: true,
|
|
want: "\"BY\"i",
|
|
},
|
|
},
|
|
},
|
|
&seqExpr{
|
|
pos: position{line: 393, col: 6, offset: 11875},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 393, col: 6, offset: 11875},
|
|
val: "order",
|
|
ignoreCase: true,
|
|
want: "\"ORDER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 393, col: 15, offset: 11884},
|
|
name: "wss",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 393, col: 19, offset: 11888},
|
|
val: "by",
|
|
ignoreCase: true,
|
|
want: "\"BY\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
¬Expr{
|
|
pos: position{line: 394, col: 3, offset: 11897},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 394, col: 4, offset: 11898},
|
|
val: "[a-zA-Z0-9_]",
|
|
chars: []rune{'_'},
|
|
ranges: []rune{'a', 'z', 'A', 'Z', '0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "DotFieldAccess",
|
|
pos: position{line: 396, col: 1, offset: 11912},
|
|
expr: &actionExpr{
|
|
pos: position{line: 396, col: 19, offset: 11930},
|
|
run: (*parser).callonDotFieldAccess1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 396, col: 19, offset: 11930},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 396, col: 19, offset: 11930},
|
|
val: ".",
|
|
ignoreCase: false,
|
|
want: "\".\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 396, col: 23, offset: 11934},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 396, col: 26, offset: 11937},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayFieldAccess",
|
|
pos: position{line: 400, col: 1, offset: 11972},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 400, col: 21, offset: 11992},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 400, col: 21, offset: 11992},
|
|
run: (*parser).callonArrayFieldAccess2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 400, col: 21, offset: 11992},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 400, col: 21, offset: 11992},
|
|
val: "[\"",
|
|
ignoreCase: false,
|
|
want: "\"[\\\"\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 400, col: 27, offset: 11998},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 400, col: 30, offset: 12001},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 400, col: 41, offset: 12012},
|
|
val: "\"]",
|
|
ignoreCase: false,
|
|
want: "\"\\\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 401, col: 5, offset: 12041},
|
|
run: (*parser).callonArrayFieldAccess8,
|
|
expr: &seqExpr{
|
|
pos: position{line: 401, col: 5, offset: 12041},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 401, col: 5, offset: 12041},
|
|
val: "[",
|
|
ignoreCase: false,
|
|
want: "\"[\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 401, col: 9, offset: 12045},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 401, col: 12, offset: 12048},
|
|
name: "Integer",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 401, col: 20, offset: 12056},
|
|
val: "]",
|
|
ignoreCase: false,
|
|
want: "\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 402, col: 5, offset: 12103},
|
|
run: (*parser).callonArrayFieldAccess14,
|
|
expr: &seqExpr{
|
|
pos: position{line: 402, col: 5, offset: 12103},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 402, col: 5, offset: 12103},
|
|
val: "[",
|
|
ignoreCase: false,
|
|
want: "\"[\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 402, col: 9, offset: 12107},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 402, col: 12, offset: 12110},
|
|
name: "ParameterConstant",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 402, col: 30, offset: 12128},
|
|
val: "]",
|
|
ignoreCase: false,
|
|
want: "\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Identifier",
|
|
pos: position{line: 404, col: 1, offset: 12186},
|
|
expr: &actionExpr{
|
|
pos: position{line: 404, col: 15, offset: 12200},
|
|
run: (*parser).callonIdentifier1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 404, col: 15, offset: 12200},
|
|
exprs: []any{
|
|
&charClassMatcher{
|
|
pos: position{line: 404, col: 15, offset: 12200},
|
|
val: "[a-zA-Z_]",
|
|
chars: []rune{'_'},
|
|
ranges: []rune{'a', 'z', 'A', 'Z'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
&zeroOrMoreExpr{
|
|
pos: position{line: 404, col: 24, offset: 12209},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 404, col: 24, offset: 12209},
|
|
val: "[a-zA-Z0-9_]",
|
|
chars: []rune{'_'},
|
|
ranges: []rune{'a', 'z', 'A', 'Z', '0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Condition",
|
|
pos: position{line: 408, col: 1, offset: 12259},
|
|
expr: &actionExpr{
|
|
pos: position{line: 408, col: 14, offset: 12272},
|
|
run: (*parser).callonCondition1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 408, col: 14, offset: 12272},
|
|
label: "expression",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 408, col: 25, offset: 12283},
|
|
name: "OrExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrExpression",
|
|
pos: position{line: 412, col: 1, offset: 12328},
|
|
expr: &actionExpr{
|
|
pos: position{line: 412, col: 17, offset: 12344},
|
|
run: (*parser).callonOrExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 412, col: 17, offset: 12344},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 412, col: 17, offset: 12344},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 412, col: 21, offset: 12348},
|
|
name: "AndExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 412, col: 35, offset: 12362},
|
|
label: "ex2",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 412, col: 39, offset: 12366},
|
|
expr: &actionExpr{
|
|
pos: position{line: 412, col: 40, offset: 12367},
|
|
run: (*parser).callonOrExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 412, col: 40, offset: 12367},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 412, col: 40, offset: 12367},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 412, col: 43, offset: 12370},
|
|
name: "Or",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 412, col: 46, offset: 12373},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 412, col: 49, offset: 12376},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 412, col: 52, offset: 12379},
|
|
name: "AndExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AndExpression",
|
|
pos: position{line: 416, col: 1, offset: 12492},
|
|
expr: &actionExpr{
|
|
pos: position{line: 416, col: 18, offset: 12509},
|
|
run: (*parser).callonAndExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 416, col: 18, offset: 12509},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 416, col: 18, offset: 12509},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 416, col: 22, offset: 12513},
|
|
name: "ComparisonExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 416, col: 43, offset: 12534},
|
|
label: "ex2",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 416, col: 47, offset: 12538},
|
|
expr: &actionExpr{
|
|
pos: position{line: 416, col: 48, offset: 12539},
|
|
run: (*parser).callonAndExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 416, col: 48, offset: 12539},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 416, col: 48, offset: 12539},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 416, col: 51, offset: 12542},
|
|
name: "And",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 416, col: 55, offset: 12546},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 416, col: 58, offset: 12549},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 416, col: 61, offset: 12552},
|
|
name: "ComparisonExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ComparisonExpression",
|
|
pos: position{line: 420, col: 1, offset: 12673},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 420, col: 25, offset: 12697},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 420, col: 25, offset: 12697},
|
|
run: (*parser).callonComparisonExpression2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 420, col: 25, offset: 12697},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 420, col: 25, offset: 12697},
|
|
label: "left",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 420, col: 30, offset: 12702},
|
|
name: "AddSubExpression",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 420, col: 47, offset: 12719},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 420, col: 50, offset: 12722},
|
|
label: "op",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 420, col: 53, offset: 12725},
|
|
name: "ComparisonOperator",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 420, col: 72, offset: 12744},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 420, col: 75, offset: 12747},
|
|
label: "right",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 420, col: 81, offset: 12753},
|
|
name: "AddSubExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 422, col: 5, offset: 12866},
|
|
run: (*parser).callonComparisonExpression12,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 422, col: 5, offset: 12866},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 422, col: 8, offset: 12869},
|
|
name: "AddSubExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AddSubExpression",
|
|
pos: position{line: 424, col: 1, offset: 12906},
|
|
expr: &actionExpr{
|
|
pos: position{line: 424, col: 21, offset: 12926},
|
|
run: (*parser).callonAddSubExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 424, col: 21, offset: 12926},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 21, offset: 12926},
|
|
label: "left",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 424, col: 26, offset: 12931},
|
|
name: "MulDivExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 43, offset: 12948},
|
|
label: "operations",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 424, col: 54, offset: 12959},
|
|
expr: &actionExpr{
|
|
pos: position{line: 424, col: 55, offset: 12960},
|
|
run: (*parser).callonAddSubExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 424, col: 55, offset: 12960},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 424, col: 55, offset: 12960},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 58, offset: 12963},
|
|
label: "op",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 424, col: 61, offset: 12966},
|
|
name: "AddOrSubtractOperation",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 424, col: 84, offset: 12989},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 87, offset: 12992},
|
|
label: "right",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 424, col: 93, offset: 12998},
|
|
name: "MulDivExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MulDivExpression",
|
|
pos: position{line: 428, col: 1, offset: 13111},
|
|
expr: &actionExpr{
|
|
pos: position{line: 428, col: 21, offset: 13131},
|
|
run: (*parser).callonMulDivExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 428, col: 21, offset: 13131},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 21, offset: 13131},
|
|
label: "left",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 428, col: 26, offset: 13136},
|
|
name: "SelectItemWithParentheses",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 52, offset: 13162},
|
|
label: "operations",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 428, col: 63, offset: 13173},
|
|
expr: &actionExpr{
|
|
pos: position{line: 428, col: 64, offset: 13174},
|
|
run: (*parser).callonMulDivExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 428, col: 64, offset: 13174},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 428, col: 64, offset: 13174},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 67, offset: 13177},
|
|
label: "op",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 428, col: 70, offset: 13180},
|
|
name: "MultiplyOrDivideOperation",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 428, col: 96, offset: 13206},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 99, offset: 13209},
|
|
label: "right",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 428, col: 105, offset: 13215},
|
|
name: "SelectItemWithParentheses",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectItemWithParentheses",
|
|
pos: position{line: 432, col: 1, offset: 13337},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 432, col: 30, offset: 13366},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 432, col: 30, offset: 13366},
|
|
run: (*parser).callonSelectItemWithParentheses2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 432, col: 30, offset: 13366},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 432, col: 30, offset: 13366},
|
|
label: "inv",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 432, col: 34, offset: 13370},
|
|
expr: &seqExpr{
|
|
pos: position{line: 432, col: 35, offset: 13371},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 432, col: 35, offset: 13371},
|
|
name: "Not",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 432, col: 39, offset: 13375},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 432, col: 44, offset: 13380},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 432, col: 48, offset: 13384},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 432, col: 51, offset: 13387},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 432, col: 54, offset: 13390},
|
|
name: "OrExpression",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 432, col: 67, offset: 13403},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 432, col: 70, offset: 13406},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 441, col: 7, offset: 13585},
|
|
run: (*parser).callonSelectItemWithParentheses15,
|
|
expr: &seqExpr{
|
|
pos: position{line: 441, col: 7, offset: 13585},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 441, col: 7, offset: 13585},
|
|
label: "inv",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 441, col: 11, offset: 13589},
|
|
expr: &seqExpr{
|
|
pos: position{line: 441, col: 12, offset: 13590},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 441, col: 12, offset: 13590},
|
|
name: "Not",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 441, col: 16, offset: 13594},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 441, col: 21, offset: 13599},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 441, col: 24, offset: 13602},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 448, col: 5, offset: 13753},
|
|
run: (*parser).callonSelectItemWithParentheses24,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 448, col: 5, offset: 13753},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 448, col: 8, offset: 13756},
|
|
name: "BooleanLiteral",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderByClause",
|
|
pos: position{line: 450, col: 1, offset: 13791},
|
|
expr: &actionExpr{
|
|
pos: position{line: 450, col: 18, offset: 13808},
|
|
run: (*parser).callonOrderByClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 450, col: 18, offset: 13808},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 450, col: 18, offset: 13808},
|
|
name: "OrderBy",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 450, col: 26, offset: 13816},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 450, col: 29, offset: 13819},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 450, col: 33, offset: 13823},
|
|
name: "OrderExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 450, col: 49, offset: 13839},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 450, col: 56, offset: 13846},
|
|
expr: &actionExpr{
|
|
pos: position{line: 450, col: 57, offset: 13847},
|
|
run: (*parser).callonOrderByClause9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 450, col: 57, offset: 13847},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 450, col: 57, offset: 13847},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 450, col: 60, offset: 13850},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 450, col: 64, offset: 13854},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 450, col: 67, offset: 13857},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 450, col: 70, offset: 13860},
|
|
name: "OrderExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderExpression",
|
|
pos: position{line: 454, col: 1, offset: 13944},
|
|
expr: &actionExpr{
|
|
pos: position{line: 454, col: 20, offset: 13963},
|
|
run: (*parser).callonOrderExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 454, col: 20, offset: 13963},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 454, col: 20, offset: 13963},
|
|
label: "field",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 454, col: 26, offset: 13969},
|
|
name: "SelectProperty",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 454, col: 41, offset: 13984},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 454, col: 44, offset: 13987},
|
|
label: "order",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 454, col: 50, offset: 13993},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 454, col: 50, offset: 13993},
|
|
name: "OrderDirection",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderDirection",
|
|
pos: position{line: 458, col: 1, offset: 14059},
|
|
expr: &actionExpr{
|
|
pos: position{line: 458, col: 19, offset: 14077},
|
|
run: (*parser).callonOrderDirection1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 458, col: 20, offset: 14078},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 458, col: 20, offset: 14078},
|
|
val: "asc",
|
|
ignoreCase: true,
|
|
want: "\"ASC\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 458, col: 29, offset: 14087},
|
|
val: "desc",
|
|
ignoreCase: true,
|
|
want: "\"DESC\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Select",
|
|
pos: position{line: 466, col: 1, offset: 14248},
|
|
expr: &litMatcher{
|
|
pos: position{line: 466, col: 11, offset: 14258},
|
|
val: "select",
|
|
ignoreCase: true,
|
|
want: "\"SELECT\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Top",
|
|
pos: position{line: 468, col: 1, offset: 14269},
|
|
expr: &litMatcher{
|
|
pos: position{line: 468, col: 8, offset: 14276},
|
|
val: "top",
|
|
ignoreCase: true,
|
|
want: "\"TOP\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "As",
|
|
pos: position{line: 470, col: 1, offset: 14284},
|
|
expr: &litMatcher{
|
|
pos: position{line: 470, col: 7, offset: 14290},
|
|
val: "as",
|
|
ignoreCase: true,
|
|
want: "\"AS\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "From",
|
|
pos: position{line: 472, col: 1, offset: 14297},
|
|
expr: &litMatcher{
|
|
pos: position{line: 472, col: 9, offset: 14305},
|
|
val: "from",
|
|
ignoreCase: true,
|
|
want: "\"FROM\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "In",
|
|
pos: position{line: 474, col: 1, offset: 14314},
|
|
expr: &litMatcher{
|
|
pos: position{line: 474, col: 7, offset: 14320},
|
|
val: "in",
|
|
ignoreCase: true,
|
|
want: "\"IN\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Join",
|
|
pos: position{line: 476, col: 1, offset: 14327},
|
|
expr: &litMatcher{
|
|
pos: position{line: 476, col: 9, offset: 14335},
|
|
val: "join",
|
|
ignoreCase: true,
|
|
want: "\"JOIN\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Exists",
|
|
pos: position{line: 478, col: 1, offset: 14344},
|
|
expr: &litMatcher{
|
|
pos: position{line: 478, col: 11, offset: 14354},
|
|
val: "exists",
|
|
ignoreCase: true,
|
|
want: "\"EXISTS\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Where",
|
|
pos: position{line: 480, col: 1, offset: 14365},
|
|
expr: &litMatcher{
|
|
pos: position{line: 480, col: 10, offset: 14374},
|
|
val: "where",
|
|
ignoreCase: true,
|
|
want: "\"WHERE\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "And",
|
|
pos: position{line: 482, col: 1, offset: 14384},
|
|
expr: &litMatcher{
|
|
pos: position{line: 482, col: 8, offset: 14391},
|
|
val: "and",
|
|
ignoreCase: true,
|
|
want: "\"AND\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Or",
|
|
pos: position{line: 484, col: 1, offset: 14399},
|
|
expr: &seqExpr{
|
|
pos: position{line: 484, col: 7, offset: 14405},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 484, col: 7, offset: 14405},
|
|
val: "or",
|
|
ignoreCase: true,
|
|
want: "\"OR\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 484, col: 13, offset: 14411},
|
|
name: "wss",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Not",
|
|
pos: position{line: 486, col: 1, offset: 14416},
|
|
expr: &litMatcher{
|
|
pos: position{line: 486, col: 8, offset: 14423},
|
|
val: "not",
|
|
ignoreCase: true,
|
|
want: "\"NOT\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "GroupBy",
|
|
pos: position{line: 488, col: 1, offset: 14431},
|
|
expr: &seqExpr{
|
|
pos: position{line: 488, col: 12, offset: 14442},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 488, col: 12, offset: 14442},
|
|
val: "group",
|
|
ignoreCase: true,
|
|
want: "\"GROUP\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 488, col: 21, offset: 14451},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 488, col: 24, offset: 14454},
|
|
val: "by",
|
|
ignoreCase: true,
|
|
want: "\"BY\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderBy",
|
|
pos: position{line: 490, col: 1, offset: 14461},
|
|
expr: &seqExpr{
|
|
pos: position{line: 490, col: 12, offset: 14472},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 12, offset: 14472},
|
|
val: "order",
|
|
ignoreCase: true,
|
|
want: "\"ORDER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 490, col: 21, offset: 14481},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 24, offset: 14484},
|
|
val: "by",
|
|
ignoreCase: true,
|
|
want: "\"BY\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Offset",
|
|
pos: position{line: 492, col: 1, offset: 14491},
|
|
expr: &litMatcher{
|
|
pos: position{line: 492, col: 11, offset: 14501},
|
|
val: "offset",
|
|
ignoreCase: true,
|
|
want: "\"OFFSET\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "ComparisonOperator",
|
|
pos: position{line: 494, col: 1, offset: 14512},
|
|
expr: &actionExpr{
|
|
pos: position{line: 494, col: 23, offset: 14534},
|
|
run: (*parser).callonComparisonOperator1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 494, col: 24, offset: 14535},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 24, offset: 14535},
|
|
val: "<=",
|
|
ignoreCase: false,
|
|
want: "\"<=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 31, offset: 14542},
|
|
val: ">=",
|
|
ignoreCase: false,
|
|
want: "\">=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 38, offset: 14549},
|
|
val: "=",
|
|
ignoreCase: false,
|
|
want: "\"=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 44, offset: 14555},
|
|
val: "!=",
|
|
ignoreCase: false,
|
|
want: "\"!=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 51, offset: 14562},
|
|
val: "<",
|
|
ignoreCase: false,
|
|
want: "\"<\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 57, offset: 14568},
|
|
val: ">",
|
|
ignoreCase: false,
|
|
want: "\">\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AddOrSubtractOperation",
|
|
pos: position{line: 498, col: 1, offset: 14609},
|
|
expr: &actionExpr{
|
|
pos: position{line: 498, col: 27, offset: 14635},
|
|
run: (*parser).callonAddOrSubtractOperation1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 498, col: 28, offset: 14636},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 498, col: 28, offset: 14636},
|
|
val: "+",
|
|
ignoreCase: false,
|
|
want: "\"+\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 498, col: 34, offset: 14642},
|
|
val: "-",
|
|
ignoreCase: false,
|
|
want: "\"-\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MultiplyOrDivideOperation",
|
|
pos: position{line: 500, col: 1, offset: 14679},
|
|
expr: &actionExpr{
|
|
pos: position{line: 500, col: 30, offset: 14708},
|
|
run: (*parser).callonMultiplyOrDivideOperation1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 500, col: 31, offset: 14709},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 500, col: 31, offset: 14709},
|
|
val: "*",
|
|
ignoreCase: false,
|
|
want: "\"*\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 500, col: 37, offset: 14715},
|
|
val: "/",
|
|
ignoreCase: false,
|
|
want: "\"/\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Literal",
|
|
pos: position{line: 502, col: 1, offset: 14752},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 502, col: 12, offset: 14763},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 502, col: 12, offset: 14763},
|
|
name: "FloatLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 502, col: 27, offset: 14778},
|
|
name: "IntegerLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 502, col: 44, offset: 14795},
|
|
name: "StringLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 502, col: 60, offset: 14811},
|
|
name: "BooleanLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 502, col: 77, offset: 14828},
|
|
name: "ParameterConstant",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 502, col: 97, offset: 14848},
|
|
name: "NullConstant",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ParameterConstant",
|
|
pos: position{line: 504, col: 1, offset: 14862},
|
|
expr: &actionExpr{
|
|
pos: position{line: 504, col: 22, offset: 14883},
|
|
run: (*parser).callonParameterConstant1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 504, col: 22, offset: 14883},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 504, col: 22, offset: 14883},
|
|
val: "@",
|
|
ignoreCase: false,
|
|
want: "\"@\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 504, col: 26, offset: 14887},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "NullConstant",
|
|
pos: position{line: 507, col: 1, offset: 15003},
|
|
expr: &actionExpr{
|
|
pos: position{line: 507, col: 17, offset: 15019},
|
|
run: (*parser).callonNullConstant1,
|
|
expr: &litMatcher{
|
|
pos: position{line: 507, col: 17, offset: 15019},
|
|
val: "null",
|
|
ignoreCase: true,
|
|
want: "\"null\"i",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IntegerLiteral",
|
|
pos: position{line: 511, col: 1, offset: 15077},
|
|
expr: &actionExpr{
|
|
pos: position{line: 511, col: 19, offset: 15095},
|
|
run: (*parser).callonIntegerLiteral1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 511, col: 19, offset: 15095},
|
|
label: "number",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 511, col: 26, offset: 15102},
|
|
name: "Integer",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringLiteral",
|
|
pos: position{line: 514, col: 1, offset: 15203},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 514, col: 18, offset: 15220},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 514, col: 18, offset: 15220},
|
|
run: (*parser).callonStringLiteral2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 514, col: 18, offset: 15220},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 514, col: 18, offset: 15220},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 514, col: 23, offset: 15225},
|
|
label: "chars",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 514, col: 29, offset: 15231},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 514, col: 29, offset: 15231},
|
|
name: "StringCharacter",
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 514, col: 46, offset: 15248},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 516, col: 5, offset: 15368},
|
|
run: (*parser).callonStringLiteral9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 516, col: 5, offset: 15368},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 516, col: 5, offset: 15368},
|
|
val: "'",
|
|
ignoreCase: false,
|
|
want: "\"'\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 516, col: 9, offset: 15372},
|
|
label: "chars",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 516, col: 15, offset: 15378},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 516, col: 15, offset: 15378},
|
|
name: "SingleQuotedStringCharacter",
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 516, col: 44, offset: 15407},
|
|
val: "'",
|
|
ignoreCase: false,
|
|
want: "\"'\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "FloatLiteral",
|
|
pos: position{line: 519, col: 1, offset: 15524},
|
|
expr: &actionExpr{
|
|
pos: position{line: 519, col: 17, offset: 15540},
|
|
run: (*parser).callonFloatLiteral1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 519, col: 17, offset: 15540},
|
|
exprs: []any{
|
|
&oneOrMoreExpr{
|
|
pos: position{line: 519, col: 17, offset: 15540},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 519, col: 17, offset: 15540},
|
|
val: "[0-9]",
|
|
ranges: []rune{'0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 519, col: 23, offset: 15546},
|
|
val: ".",
|
|
ignoreCase: false,
|
|
want: "\".\"",
|
|
},
|
|
&oneOrMoreExpr{
|
|
pos: position{line: 519, col: 26, offset: 15549},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 519, col: 26, offset: 15549},
|
|
val: "[0-9]",
|
|
ranges: []rune{'0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "BooleanLiteral",
|
|
pos: position{line: 523, col: 1, offset: 15705},
|
|
expr: &actionExpr{
|
|
pos: position{line: 523, col: 19, offset: 15723},
|
|
run: (*parser).callonBooleanLiteral1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 523, col: 20, offset: 15724},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 523, col: 20, offset: 15724},
|
|
val: "true",
|
|
ignoreCase: true,
|
|
want: "\"true\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 523, col: 30, offset: 15734},
|
|
val: "false",
|
|
ignoreCase: true,
|
|
want: "\"false\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "FunctionCall",
|
|
pos: position{line: 528, col: 1, offset: 15889},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 528, col: 17, offset: 15905},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 528, col: 17, offset: 15905},
|
|
name: "StringFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 529, col: 7, offset: 15927},
|
|
name: "TypeCheckingFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 530, col: 7, offset: 15955},
|
|
name: "ArrayFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 531, col: 7, offset: 15976},
|
|
name: "ConditionalFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 532, col: 7, offset: 16003},
|
|
name: "InFunction",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 533, col: 7, offset: 16020},
|
|
name: "AggregateFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 534, col: 7, offset: 16045},
|
|
name: "MathFunctions",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringFunctions",
|
|
pos: position{line: 536, col: 1, offset: 16060},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 536, col: 20, offset: 16079},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 536, col: 20, offset: 16079},
|
|
name: "StringEqualsExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 537, col: 7, offset: 16108},
|
|
name: "ToStringExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 538, col: 7, offset: 16133},
|
|
name: "ConcatExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 539, col: 7, offset: 16156},
|
|
name: "ThreeArgumentStringFunctionExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 540, col: 7, offset: 16200},
|
|
name: "UpperExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 541, col: 7, offset: 16222},
|
|
name: "LowerExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 542, col: 7, offset: 16244},
|
|
name: "LeftExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 543, col: 7, offset: 16265},
|
|
name: "LengthExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 544, col: 7, offset: 16288},
|
|
name: "LTrimExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 545, col: 7, offset: 16310},
|
|
name: "ReplaceExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 546, col: 7, offset: 16334},
|
|
name: "ReplicateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 547, col: 7, offset: 16360},
|
|
name: "ReverseExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 548, col: 7, offset: 16384},
|
|
name: "RightExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 549, col: 7, offset: 16406},
|
|
name: "RTrimExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 550, col: 7, offset: 16428},
|
|
name: "SubstringExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 551, col: 7, offset: 16454},
|
|
name: "TrimExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "TypeCheckingFunctions",
|
|
pos: position{line: 553, col: 1, offset: 16470},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 553, col: 26, offset: 16495},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 553, col: 26, offset: 16495},
|
|
name: "IsDefined",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 554, col: 7, offset: 16511},
|
|
name: "IsArray",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 555, col: 7, offset: 16525},
|
|
name: "IsBool",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 556, col: 7, offset: 16538},
|
|
name: "IsFiniteNumber",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 557, col: 7, offset: 16559},
|
|
name: "IsInteger",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 558, col: 7, offset: 16575},
|
|
name: "IsNull",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 559, col: 7, offset: 16588},
|
|
name: "IsNumber",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 560, col: 7, offset: 16603},
|
|
name: "IsObject",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 561, col: 7, offset: 16618},
|
|
name: "IsPrimitive",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 562, col: 7, offset: 16636},
|
|
name: "IsString",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AggregateFunctions",
|
|
pos: position{line: 564, col: 1, offset: 16646},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 564, col: 23, offset: 16668},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 564, col: 23, offset: 16668},
|
|
name: "AvgAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 565, col: 7, offset: 16697},
|
|
name: "CountAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 566, col: 7, offset: 16728},
|
|
name: "MaxAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 567, col: 7, offset: 16757},
|
|
name: "MinAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 568, col: 7, offset: 16786},
|
|
name: "SumAggregateExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayFunctions",
|
|
pos: position{line: 570, col: 1, offset: 16810},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 570, col: 19, offset: 16828},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 570, col: 19, offset: 16828},
|
|
name: "ArrayConcatExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 571, col: 7, offset: 16856},
|
|
name: "ArrayContainsExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 572, col: 7, offset: 16886},
|
|
name: "ArrayContainsAnyExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 573, col: 7, offset: 16919},
|
|
name: "ArrayContainsAllExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 574, col: 7, offset: 16952},
|
|
name: "ArrayLengthExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 575, col: 7, offset: 16980},
|
|
name: "ArraySliceExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 576, col: 7, offset: 17007},
|
|
name: "SetIntersectExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 577, col: 7, offset: 17036},
|
|
name: "SetUnionExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ConditionalFunctions",
|
|
pos: position{line: 579, col: 1, offset: 17056},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 579, col: 25, offset: 17080},
|
|
name: "IifExpression",
|
|
},
|
|
},
|
|
{
|
|
name: "MathFunctions",
|
|
pos: position{line: 581, col: 1, offset: 17095},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 581, col: 18, offset: 17112},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 581, col: 18, offset: 17112},
|
|
name: "MathAbsExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 582, col: 7, offset: 17136},
|
|
name: "MathAcosExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 583, col: 7, offset: 17161},
|
|
name: "MathAsinExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 584, col: 7, offset: 17186},
|
|
name: "MathAtanExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 585, col: 7, offset: 17211},
|
|
name: "MathCeilingExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 586, col: 7, offset: 17239},
|
|
name: "MathCosExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 587, col: 7, offset: 17263},
|
|
name: "MathCotExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 588, col: 7, offset: 17287},
|
|
name: "MathDegreesExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 589, col: 7, offset: 17315},
|
|
name: "MathExpExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 590, col: 7, offset: 17339},
|
|
name: "MathFloorExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 591, col: 7, offset: 17365},
|
|
name: "MathIntBitNotExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 592, col: 7, offset: 17395},
|
|
name: "MathLog10Expression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 593, col: 7, offset: 17421},
|
|
name: "MathRadiansExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 594, col: 7, offset: 17449},
|
|
name: "MathRoundExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 595, col: 7, offset: 17475},
|
|
name: "MathSignExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 596, col: 7, offset: 17500},
|
|
name: "MathSinExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 597, col: 7, offset: 17524},
|
|
name: "MathSqrtExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 598, col: 7, offset: 17549},
|
|
name: "MathSquareExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 599, col: 7, offset: 17576},
|
|
name: "MathTanExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 600, col: 7, offset: 17600},
|
|
name: "MathTruncExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 601, col: 7, offset: 17626},
|
|
name: "MathAtn2Expression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 602, col: 7, offset: 17651},
|
|
name: "MathIntAddExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 603, col: 7, offset: 17678},
|
|
name: "MathIntBitAndExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 604, col: 7, offset: 17708},
|
|
name: "MathIntBitLeftShiftExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 605, col: 7, offset: 17744},
|
|
name: "MathIntBitOrExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 606, col: 7, offset: 17773},
|
|
name: "MathIntBitRightShiftExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 607, col: 7, offset: 17810},
|
|
name: "MathIntBitXorExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 608, col: 7, offset: 17840},
|
|
name: "MathIntDivExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 609, col: 7, offset: 17867},
|
|
name: "MathIntModExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 610, col: 7, offset: 17894},
|
|
name: "MathIntMulExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 611, col: 7, offset: 17921},
|
|
name: "MathIntSubExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 612, col: 7, offset: 17948},
|
|
name: "MathPowerExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 613, col: 7, offset: 17974},
|
|
name: "MathLogExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 614, col: 7, offset: 17998},
|
|
name: "MathNumberBinExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 615, col: 7, offset: 18028},
|
|
name: "MathPiExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 616, col: 7, offset: 18051},
|
|
name: "MathRandExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "UpperExpression",
|
|
pos: position{line: 618, col: 1, offset: 18071},
|
|
expr: &actionExpr{
|
|
pos: position{line: 618, col: 20, offset: 18090},
|
|
run: (*parser).callonUpperExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 618, col: 20, offset: 18090},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 618, col: 20, offset: 18090},
|
|
val: "upper",
|
|
ignoreCase: true,
|
|
want: "\"UPPER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 618, col: 29, offset: 18099},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 618, col: 32, offset: 18102},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 618, col: 36, offset: 18106},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 618, col: 39, offset: 18109},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 618, col: 50, offset: 18120},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LowerExpression",
|
|
pos: position{line: 622, col: 1, offset: 18205},
|
|
expr: &actionExpr{
|
|
pos: position{line: 622, col: 20, offset: 18224},
|
|
run: (*parser).callonLowerExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 622, col: 20, offset: 18224},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 622, col: 20, offset: 18224},
|
|
val: "lower",
|
|
ignoreCase: true,
|
|
want: "\"LOWER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 622, col: 29, offset: 18233},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 622, col: 32, offset: 18236},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 622, col: 36, offset: 18240},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 622, col: 39, offset: 18243},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 622, col: 50, offset: 18254},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringEqualsExpression",
|
|
pos: position{line: 626, col: 1, offset: 18339},
|
|
expr: &actionExpr{
|
|
pos: position{line: 626, col: 27, offset: 18365},
|
|
run: (*parser).callonStringEqualsExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 626, col: 27, offset: 18365},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 626, col: 27, offset: 18365},
|
|
val: "stringequals",
|
|
ignoreCase: true,
|
|
want: "\"STRINGEQUALS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 626, col: 43, offset: 18381},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 626, col: 46, offset: 18384},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 626, col: 50, offset: 18388},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 626, col: 53, offset: 18391},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 626, col: 57, offset: 18395},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 626, col: 68, offset: 18406},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 626, col: 71, offset: 18409},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 626, col: 75, offset: 18413},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 626, col: 78, offset: 18416},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 626, col: 82, offset: 18420},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 626, col: 93, offset: 18431},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 626, col: 96, offset: 18434},
|
|
label: "ignoreCase",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 626, col: 107, offset: 18445},
|
|
expr: &actionExpr{
|
|
pos: position{line: 626, col: 108, offset: 18446},
|
|
run: (*parser).callonStringEqualsExpression17,
|
|
expr: &seqExpr{
|
|
pos: position{line: 626, col: 108, offset: 18446},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 626, col: 108, offset: 18446},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 626, col: 112, offset: 18450},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 626, col: 115, offset: 18453},
|
|
label: "boolean",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 626, col: 123, offset: 18461},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 626, col: 160, offset: 18498},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ToStringExpression",
|
|
pos: position{line: 630, col: 1, offset: 18608},
|
|
expr: &actionExpr{
|
|
pos: position{line: 630, col: 23, offset: 18630},
|
|
run: (*parser).callonToStringExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 630, col: 23, offset: 18630},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 630, col: 23, offset: 18630},
|
|
val: "tostring",
|
|
ignoreCase: true,
|
|
want: "\"TOSTRING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 630, col: 35, offset: 18642},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 630, col: 38, offset: 18645},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 630, col: 42, offset: 18649},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 630, col: 45, offset: 18652},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 630, col: 48, offset: 18655},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 630, col: 59, offset: 18666},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 630, col: 62, offset: 18669},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ConcatExpression",
|
|
pos: position{line: 634, col: 1, offset: 18757},
|
|
expr: &actionExpr{
|
|
pos: position{line: 634, col: 21, offset: 18777},
|
|
run: (*parser).callonConcatExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 634, col: 21, offset: 18777},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 634, col: 21, offset: 18777},
|
|
val: "concat",
|
|
ignoreCase: true,
|
|
want: "\"CONCAT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 634, col: 31, offset: 18787},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 634, col: 34, offset: 18790},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 634, col: 38, offset: 18794},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 634, col: 41, offset: 18797},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 634, col: 45, offset: 18801},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 634, col: 56, offset: 18812},
|
|
label: "others",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 634, col: 63, offset: 18819},
|
|
expr: &actionExpr{
|
|
pos: position{line: 634, col: 64, offset: 18820},
|
|
run: (*parser).callonConcatExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 634, col: 64, offset: 18820},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 634, col: 64, offset: 18820},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 634, col: 67, offset: 18823},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 634, col: 71, offset: 18827},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 634, col: 74, offset: 18830},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 634, col: 77, offset: 18833},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 634, col: 109, offset: 18865},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 634, col: 112, offset: 18868},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LeftExpression",
|
|
pos: position{line: 639, col: 1, offset: 19017},
|
|
expr: &actionExpr{
|
|
pos: position{line: 639, col: 19, offset: 19035},
|
|
run: (*parser).callonLeftExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 639, col: 19, offset: 19035},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 19, offset: 19035},
|
|
val: "left",
|
|
ignoreCase: true,
|
|
want: "\"LEFT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 27, offset: 19043},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 30, offset: 19046},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 34, offset: 19050},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 639, col: 37, offset: 19053},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 639, col: 40, offset: 19056},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 51, offset: 19067},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 54, offset: 19070},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 58, offset: 19074},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 639, col: 61, offset: 19077},
|
|
label: "length",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 639, col: 68, offset: 19084},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 79, offset: 19095},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 82, offset: 19098},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LengthExpression",
|
|
pos: position{line: 643, col: 1, offset: 19190},
|
|
expr: &actionExpr{
|
|
pos: position{line: 643, col: 21, offset: 19210},
|
|
run: (*parser).callonLengthExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 643, col: 21, offset: 19210},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 21, offset: 19210},
|
|
val: "length",
|
|
ignoreCase: true,
|
|
want: "\"LENGTH\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 31, offset: 19220},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 34, offset: 19223},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 38, offset: 19227},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 643, col: 41, offset: 19230},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 643, col: 44, offset: 19233},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 55, offset: 19244},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 58, offset: 19247},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LTrimExpression",
|
|
pos: position{line: 647, col: 1, offset: 19333},
|
|
expr: &actionExpr{
|
|
pos: position{line: 647, col: 20, offset: 19352},
|
|
run: (*parser).callonLTrimExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 647, col: 20, offset: 19352},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 647, col: 20, offset: 19352},
|
|
val: "ltrim",
|
|
ignoreCase: true,
|
|
want: "\"LTRIM\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 647, col: 29, offset: 19361},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 647, col: 32, offset: 19364},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 647, col: 36, offset: 19368},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 647, col: 39, offset: 19371},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 647, col: 42, offset: 19374},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 647, col: 53, offset: 19385},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 647, col: 56, offset: 19388},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ReplaceExpression",
|
|
pos: position{line: 651, col: 1, offset: 19473},
|
|
expr: &actionExpr{
|
|
pos: position{line: 651, col: 22, offset: 19494},
|
|
run: (*parser).callonReplaceExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 651, col: 22, offset: 19494},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 651, col: 22, offset: 19494},
|
|
val: "replace",
|
|
ignoreCase: true,
|
|
want: "\"REPLACE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 33, offset: 19505},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 651, col: 36, offset: 19508},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 40, offset: 19512},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 651, col: 43, offset: 19515},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 651, col: 47, offset: 19519},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 58, offset: 19530},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 651, col: 61, offset: 19533},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 65, offset: 19537},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 651, col: 68, offset: 19540},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 651, col: 72, offset: 19544},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 83, offset: 19555},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 651, col: 86, offset: 19558},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 90, offset: 19562},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 651, col: 93, offset: 19565},
|
|
label: "ex3",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 651, col: 97, offset: 19569},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 651, col: 108, offset: 19580},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 651, col: 111, offset: 19583},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ReplicateExpression",
|
|
pos: position{line: 655, col: 1, offset: 19681},
|
|
expr: &actionExpr{
|
|
pos: position{line: 655, col: 24, offset: 19704},
|
|
run: (*parser).callonReplicateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 655, col: 24, offset: 19704},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 655, col: 24, offset: 19704},
|
|
val: "replicate",
|
|
ignoreCase: true,
|
|
want: "\"REPLICATE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 655, col: 37, offset: 19717},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 655, col: 40, offset: 19720},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 655, col: 44, offset: 19724},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 655, col: 47, offset: 19727},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 655, col: 51, offset: 19731},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 655, col: 62, offset: 19742},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 655, col: 65, offset: 19745},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 655, col: 69, offset: 19749},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 655, col: 72, offset: 19752},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 655, col: 76, offset: 19756},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 655, col: 87, offset: 19767},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 655, col: 90, offset: 19770},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ReverseExpression",
|
|
pos: position{line: 659, col: 1, offset: 19865},
|
|
expr: &actionExpr{
|
|
pos: position{line: 659, col: 22, offset: 19886},
|
|
run: (*parser).callonReverseExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 659, col: 22, offset: 19886},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 659, col: 22, offset: 19886},
|
|
val: "reverse",
|
|
ignoreCase: true,
|
|
want: "\"REVERSE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 659, col: 33, offset: 19897},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 659, col: 36, offset: 19900},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 659, col: 40, offset: 19904},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 659, col: 43, offset: 19907},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 659, col: 46, offset: 19910},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 659, col: 57, offset: 19921},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 659, col: 60, offset: 19924},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "RightExpression",
|
|
pos: position{line: 663, col: 1, offset: 20011},
|
|
expr: &actionExpr{
|
|
pos: position{line: 663, col: 20, offset: 20030},
|
|
run: (*parser).callonRightExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 663, col: 20, offset: 20030},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 663, col: 20, offset: 20030},
|
|
val: "right",
|
|
ignoreCase: true,
|
|
want: "\"RIGHT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 663, col: 29, offset: 20039},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 663, col: 32, offset: 20042},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 663, col: 36, offset: 20046},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 663, col: 39, offset: 20049},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 663, col: 42, offset: 20052},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 663, col: 53, offset: 20063},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 663, col: 56, offset: 20066},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 663, col: 60, offset: 20070},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 663, col: 63, offset: 20073},
|
|
label: "length",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 663, col: 70, offset: 20080},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 663, col: 81, offset: 20091},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 663, col: 84, offset: 20094},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "RTrimExpression",
|
|
pos: position{line: 667, col: 1, offset: 20187},
|
|
expr: &actionExpr{
|
|
pos: position{line: 667, col: 20, offset: 20206},
|
|
run: (*parser).callonRTrimExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 667, col: 20, offset: 20206},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 667, col: 20, offset: 20206},
|
|
val: "rtrim",
|
|
ignoreCase: true,
|
|
want: "\"RTRIM\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 667, col: 29, offset: 20215},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 667, col: 32, offset: 20218},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 667, col: 36, offset: 20222},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 667, col: 39, offset: 20225},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 667, col: 42, offset: 20228},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 667, col: 53, offset: 20239},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 667, col: 56, offset: 20242},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SubstringExpression",
|
|
pos: position{line: 671, col: 1, offset: 20327},
|
|
expr: &actionExpr{
|
|
pos: position{line: 671, col: 24, offset: 20350},
|
|
run: (*parser).callonSubstringExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 671, col: 24, offset: 20350},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 671, col: 24, offset: 20350},
|
|
val: "substring",
|
|
ignoreCase: true,
|
|
want: "\"SUBSTRING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 37, offset: 20363},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 671, col: 40, offset: 20366},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 44, offset: 20370},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 671, col: 47, offset: 20373},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 671, col: 50, offset: 20376},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 61, offset: 20387},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 671, col: 64, offset: 20390},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 68, offset: 20394},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 671, col: 71, offset: 20397},
|
|
label: "startPos",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 671, col: 80, offset: 20406},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 91, offset: 20417},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 671, col: 94, offset: 20420},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 98, offset: 20424},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 671, col: 101, offset: 20427},
|
|
label: "length",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 671, col: 108, offset: 20434},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 671, col: 119, offset: 20445},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 671, col: 122, offset: 20448},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "TrimExpression",
|
|
pos: position{line: 675, col: 1, offset: 20555},
|
|
expr: &actionExpr{
|
|
pos: position{line: 675, col: 19, offset: 20573},
|
|
run: (*parser).callonTrimExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 675, col: 19, offset: 20573},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 675, col: 19, offset: 20573},
|
|
val: "trim",
|
|
ignoreCase: true,
|
|
want: "\"TRIM\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 675, col: 27, offset: 20581},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 675, col: 30, offset: 20584},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 675, col: 34, offset: 20588},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 675, col: 37, offset: 20591},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 675, col: 40, offset: 20594},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 675, col: 51, offset: 20605},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 675, col: 54, offset: 20608},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ThreeArgumentStringFunctionExpression",
|
|
pos: position{line: 679, col: 1, offset: 20692},
|
|
expr: &actionExpr{
|
|
pos: position{line: 679, col: 42, offset: 20733},
|
|
run: (*parser).callonThreeArgumentStringFunctionExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 679, col: 42, offset: 20733},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 679, col: 42, offset: 20733},
|
|
label: "function",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 679, col: 51, offset: 20742},
|
|
name: "ThreeArgumentStringFunction",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 679, col: 79, offset: 20770},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 679, col: 82, offset: 20773},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 679, col: 86, offset: 20777},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 679, col: 89, offset: 20780},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 679, col: 93, offset: 20784},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 679, col: 104, offset: 20795},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 679, col: 107, offset: 20798},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 679, col: 111, offset: 20802},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 679, col: 114, offset: 20805},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 679, col: 118, offset: 20809},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 679, col: 129, offset: 20820},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 679, col: 132, offset: 20823},
|
|
label: "ignoreCase",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 679, col: 143, offset: 20834},
|
|
expr: &actionExpr{
|
|
pos: position{line: 679, col: 144, offset: 20835},
|
|
run: (*parser).callonThreeArgumentStringFunctionExpression18,
|
|
expr: &seqExpr{
|
|
pos: position{line: 679, col: 144, offset: 20835},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 679, col: 144, offset: 20835},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 679, col: 148, offset: 20839},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 679, col: 151, offset: 20842},
|
|
label: "boolean",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 679, col: 159, offset: 20850},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 679, col: 196, offset: 20887},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ThreeArgumentStringFunction",
|
|
pos: position{line: 699, col: 1, offset: 21486},
|
|
expr: &actionExpr{
|
|
pos: position{line: 699, col: 32, offset: 21517},
|
|
run: (*parser).callonThreeArgumentStringFunction1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 699, col: 33, offset: 21518},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 699, col: 33, offset: 21518},
|
|
val: "contains",
|
|
ignoreCase: true,
|
|
want: "\"CONTAINS\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 699, col: 47, offset: 21532},
|
|
val: "endswith",
|
|
ignoreCase: true,
|
|
want: "\"ENDSWITH\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 699, col: 61, offset: 21546},
|
|
val: "startswith",
|
|
ignoreCase: true,
|
|
want: "\"STARTSWITH\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 699, col: 77, offset: 21562},
|
|
val: "regexmatch",
|
|
ignoreCase: true,
|
|
want: "\"REGEXMATCH\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 699, col: 93, offset: 21578},
|
|
val: "index_of",
|
|
ignoreCase: true,
|
|
want: "\"INDEX_OF\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsDefined",
|
|
pos: position{line: 703, col: 1, offset: 21627},
|
|
expr: &actionExpr{
|
|
pos: position{line: 703, col: 14, offset: 21640},
|
|
run: (*parser).callonIsDefined1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 703, col: 14, offset: 21640},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 703, col: 14, offset: 21640},
|
|
val: "is_defined",
|
|
ignoreCase: true,
|
|
want: "\"IS_DEFINED\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 703, col: 28, offset: 21654},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 703, col: 31, offset: 21657},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 703, col: 35, offset: 21661},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 703, col: 38, offset: 21664},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 703, col: 41, offset: 21667},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 703, col: 52, offset: 21678},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 703, col: 55, offset: 21681},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsArray",
|
|
pos: position{line: 707, col: 1, offset: 21770},
|
|
expr: &actionExpr{
|
|
pos: position{line: 707, col: 12, offset: 21781},
|
|
run: (*parser).callonIsArray1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 707, col: 12, offset: 21781},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 707, col: 12, offset: 21781},
|
|
val: "is_array",
|
|
ignoreCase: true,
|
|
want: "\"IS_ARRAY\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 707, col: 24, offset: 21793},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 707, col: 27, offset: 21796},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 707, col: 31, offset: 21800},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 707, col: 34, offset: 21803},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 707, col: 37, offset: 21806},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 707, col: 48, offset: 21817},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 707, col: 51, offset: 21820},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsBool",
|
|
pos: position{line: 711, col: 1, offset: 21907},
|
|
expr: &actionExpr{
|
|
pos: position{line: 711, col: 11, offset: 21917},
|
|
run: (*parser).callonIsBool1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 711, col: 11, offset: 21917},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 711, col: 11, offset: 21917},
|
|
val: "is_bool",
|
|
ignoreCase: true,
|
|
want: "\"IS_BOOL\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 711, col: 22, offset: 21928},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 711, col: 25, offset: 21931},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 711, col: 29, offset: 21935},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 711, col: 32, offset: 21938},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 711, col: 35, offset: 21941},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 711, col: 46, offset: 21952},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 711, col: 49, offset: 21955},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsFiniteNumber",
|
|
pos: position{line: 715, col: 1, offset: 22041},
|
|
expr: &actionExpr{
|
|
pos: position{line: 715, col: 19, offset: 22059},
|
|
run: (*parser).callonIsFiniteNumber1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 715, col: 19, offset: 22059},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 715, col: 19, offset: 22059},
|
|
val: "is_finite_number",
|
|
ignoreCase: true,
|
|
want: "\"IS_FINITE_NUMBER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 715, col: 39, offset: 22079},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 715, col: 42, offset: 22082},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 715, col: 46, offset: 22086},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 715, col: 49, offset: 22089},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 715, col: 52, offset: 22092},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 715, col: 63, offset: 22103},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 715, col: 66, offset: 22106},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsInteger",
|
|
pos: position{line: 719, col: 1, offset: 22200},
|
|
expr: &actionExpr{
|
|
pos: position{line: 719, col: 14, offset: 22213},
|
|
run: (*parser).callonIsInteger1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 719, col: 14, offset: 22213},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 719, col: 14, offset: 22213},
|
|
val: "is_integer",
|
|
ignoreCase: true,
|
|
want: "\"IS_INTEGER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 719, col: 28, offset: 22227},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 719, col: 31, offset: 22230},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 719, col: 35, offset: 22234},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 719, col: 38, offset: 22237},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 719, col: 41, offset: 22240},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 719, col: 52, offset: 22251},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 719, col: 55, offset: 22254},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsNull",
|
|
pos: position{line: 723, col: 1, offset: 22343},
|
|
expr: &actionExpr{
|
|
pos: position{line: 723, col: 11, offset: 22353},
|
|
run: (*parser).callonIsNull1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 723, col: 11, offset: 22353},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 723, col: 11, offset: 22353},
|
|
val: "is_null",
|
|
ignoreCase: true,
|
|
want: "\"IS_NULL\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 723, col: 22, offset: 22364},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 723, col: 25, offset: 22367},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 723, col: 29, offset: 22371},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 723, col: 32, offset: 22374},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 723, col: 35, offset: 22377},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 723, col: 46, offset: 22388},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 723, col: 49, offset: 22391},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsNumber",
|
|
pos: position{line: 727, col: 1, offset: 22477},
|
|
expr: &actionExpr{
|
|
pos: position{line: 727, col: 13, offset: 22489},
|
|
run: (*parser).callonIsNumber1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 727, col: 13, offset: 22489},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 727, col: 13, offset: 22489},
|
|
val: "is_number",
|
|
ignoreCase: true,
|
|
want: "\"IS_NUMBER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 727, col: 26, offset: 22502},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 727, col: 29, offset: 22505},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 727, col: 33, offset: 22509},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 727, col: 36, offset: 22512},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 727, col: 39, offset: 22515},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 727, col: 50, offset: 22526},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 727, col: 53, offset: 22529},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsObject",
|
|
pos: position{line: 731, col: 1, offset: 22617},
|
|
expr: &actionExpr{
|
|
pos: position{line: 731, col: 13, offset: 22629},
|
|
run: (*parser).callonIsObject1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 731, col: 13, offset: 22629},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 731, col: 13, offset: 22629},
|
|
val: "is_object",
|
|
ignoreCase: true,
|
|
want: "\"IS_OBJECT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 731, col: 26, offset: 22642},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 731, col: 29, offset: 22645},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 731, col: 33, offset: 22649},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 731, col: 36, offset: 22652},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 731, col: 39, offset: 22655},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 731, col: 50, offset: 22666},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 731, col: 53, offset: 22669},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsPrimitive",
|
|
pos: position{line: 735, col: 1, offset: 22757},
|
|
expr: &actionExpr{
|
|
pos: position{line: 735, col: 16, offset: 22772},
|
|
run: (*parser).callonIsPrimitive1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 735, col: 16, offset: 22772},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 735, col: 16, offset: 22772},
|
|
val: "is_primitive",
|
|
ignoreCase: true,
|
|
want: "\"IS_PRIMITIVE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 735, col: 32, offset: 22788},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 735, col: 35, offset: 22791},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 735, col: 39, offset: 22795},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 735, col: 42, offset: 22798},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 735, col: 45, offset: 22801},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 735, col: 56, offset: 22812},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 735, col: 59, offset: 22815},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsString",
|
|
pos: position{line: 739, col: 1, offset: 22906},
|
|
expr: &actionExpr{
|
|
pos: position{line: 739, col: 13, offset: 22918},
|
|
run: (*parser).callonIsString1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 739, col: 13, offset: 22918},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 739, col: 13, offset: 22918},
|
|
val: "is_string",
|
|
ignoreCase: true,
|
|
want: "\"IS_STRING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 739, col: 26, offset: 22931},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 739, col: 29, offset: 22934},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 739, col: 33, offset: 22938},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 739, col: 36, offset: 22941},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 739, col: 39, offset: 22944},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 739, col: 50, offset: 22955},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 739, col: 53, offset: 22958},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayConcatExpression",
|
|
pos: position{line: 743, col: 1, offset: 23046},
|
|
expr: &actionExpr{
|
|
pos: position{line: 743, col: 26, offset: 23071},
|
|
run: (*parser).callonArrayConcatExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 743, col: 26, offset: 23071},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 743, col: 26, offset: 23071},
|
|
val: "array_concat",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONCAT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 743, col: 42, offset: 23087},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 743, col: 45, offset: 23090},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 743, col: 49, offset: 23094},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 743, col: 52, offset: 23097},
|
|
label: "arrays",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 743, col: 59, offset: 23104},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 743, col: 70, offset: 23115},
|
|
label: "others",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 743, col: 77, offset: 23122},
|
|
expr: &actionExpr{
|
|
pos: position{line: 743, col: 78, offset: 23123},
|
|
run: (*parser).callonArrayConcatExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 743, col: 78, offset: 23123},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 743, col: 78, offset: 23123},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 743, col: 81, offset: 23126},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 743, col: 85, offset: 23130},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 743, col: 88, offset: 23133},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 743, col: 91, offset: 23136},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 743, col: 123, offset: 23168},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 743, col: 126, offset: 23171},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayContainsExpression",
|
|
pos: position{line: 747, col: 1, offset: 23301},
|
|
expr: &actionExpr{
|
|
pos: position{line: 747, col: 28, offset: 23328},
|
|
run: (*parser).callonArrayContainsExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 747, col: 28, offset: 23328},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 747, col: 28, offset: 23328},
|
|
val: "array_contains",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONTAINS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 46, offset: 23346},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 747, col: 49, offset: 23349},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 53, offset: 23353},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 747, col: 56, offset: 23356},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 747, col: 62, offset: 23362},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 73, offset: 23373},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 747, col: 76, offset: 23376},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 80, offset: 23380},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 747, col: 83, offset: 23383},
|
|
label: "item",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 747, col: 88, offset: 23388},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 747, col: 99, offset: 23399},
|
|
label: "partialMatch",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 747, col: 112, offset: 23412},
|
|
expr: &actionExpr{
|
|
pos: position{line: 747, col: 113, offset: 23413},
|
|
run: (*parser).callonArrayContainsExpression16,
|
|
expr: &seqExpr{
|
|
pos: position{line: 747, col: 113, offset: 23413},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 113, offset: 23413},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 747, col: 116, offset: 23416},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 120, offset: 23420},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 747, col: 123, offset: 23423},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 747, col: 126, offset: 23426},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 747, col: 158, offset: 23458},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 747, col: 161, offset: 23461},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayContainsAnyExpression",
|
|
pos: position{line: 751, col: 1, offset: 23577},
|
|
expr: &actionExpr{
|
|
pos: position{line: 751, col: 31, offset: 23607},
|
|
run: (*parser).callonArrayContainsAnyExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 751, col: 31, offset: 23607},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 751, col: 31, offset: 23607},
|
|
val: "array_contains_any",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONTAINS_ANY\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 751, col: 53, offset: 23629},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 751, col: 56, offset: 23632},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 751, col: 60, offset: 23636},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 751, col: 63, offset: 23639},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 751, col: 69, offset: 23645},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 751, col: 80, offset: 23656},
|
|
label: "items",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 751, col: 86, offset: 23662},
|
|
expr: &actionExpr{
|
|
pos: position{line: 751, col: 87, offset: 23663},
|
|
run: (*parser).callonArrayContainsAnyExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 751, col: 87, offset: 23663},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 751, col: 87, offset: 23663},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 751, col: 90, offset: 23666},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 751, col: 94, offset: 23670},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 751, col: 97, offset: 23673},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 751, col: 100, offset: 23676},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 751, col: 132, offset: 23708},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 751, col: 135, offset: 23711},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayContainsAllExpression",
|
|
pos: position{line: 755, col: 1, offset: 23844},
|
|
expr: &actionExpr{
|
|
pos: position{line: 755, col: 31, offset: 23874},
|
|
run: (*parser).callonArrayContainsAllExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 755, col: 31, offset: 23874},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 755, col: 31, offset: 23874},
|
|
val: "array_contains_all",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONTAINS_ALL\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 755, col: 53, offset: 23896},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 755, col: 56, offset: 23899},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 755, col: 60, offset: 23903},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 755, col: 63, offset: 23906},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 755, col: 69, offset: 23912},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 755, col: 80, offset: 23923},
|
|
label: "items",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 755, col: 86, offset: 23929},
|
|
expr: &actionExpr{
|
|
pos: position{line: 755, col: 87, offset: 23930},
|
|
run: (*parser).callonArrayContainsAllExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 755, col: 87, offset: 23930},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 755, col: 87, offset: 23930},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 755, col: 90, offset: 23933},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 755, col: 94, offset: 23937},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 755, col: 97, offset: 23940},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 755, col: 100, offset: 23943},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 755, col: 132, offset: 23975},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 755, col: 135, offset: 23978},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayLengthExpression",
|
|
pos: position{line: 759, col: 1, offset: 24111},
|
|
expr: &actionExpr{
|
|
pos: position{line: 759, col: 26, offset: 24136},
|
|
run: (*parser).callonArrayLengthExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 759, col: 26, offset: 24136},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 759, col: 26, offset: 24136},
|
|
val: "array_length",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_LENGTH\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 759, col: 42, offset: 24152},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 759, col: 45, offset: 24155},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 759, col: 49, offset: 24159},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 759, col: 52, offset: 24162},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 759, col: 58, offset: 24168},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 759, col: 69, offset: 24179},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 759, col: 72, offset: 24182},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArraySliceExpression",
|
|
pos: position{line: 763, col: 1, offset: 24276},
|
|
expr: &actionExpr{
|
|
pos: position{line: 763, col: 25, offset: 24300},
|
|
run: (*parser).callonArraySliceExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 763, col: 25, offset: 24300},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 763, col: 25, offset: 24300},
|
|
val: "array_slice",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_SLICE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 40, offset: 24315},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 763, col: 43, offset: 24318},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 47, offset: 24322},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 763, col: 50, offset: 24325},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 763, col: 56, offset: 24331},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 67, offset: 24342},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 763, col: 70, offset: 24345},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 74, offset: 24349},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 763, col: 77, offset: 24352},
|
|
label: "start",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 763, col: 83, offset: 24358},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 763, col: 94, offset: 24369},
|
|
label: "length",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 763, col: 101, offset: 24376},
|
|
expr: &actionExpr{
|
|
pos: position{line: 763, col: 102, offset: 24377},
|
|
run: (*parser).callonArraySliceExpression16,
|
|
expr: &seqExpr{
|
|
pos: position{line: 763, col: 102, offset: 24377},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 102, offset: 24377},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 763, col: 105, offset: 24380},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 109, offset: 24384},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 763, col: 112, offset: 24387},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 763, col: 115, offset: 24390},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 763, col: 147, offset: 24422},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 763, col: 150, offset: 24425},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SetIntersectExpression",
|
|
pos: position{line: 767, col: 1, offset: 24533},
|
|
expr: &actionExpr{
|
|
pos: position{line: 767, col: 27, offset: 24559},
|
|
run: (*parser).callonSetIntersectExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 767, col: 27, offset: 24559},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 767, col: 27, offset: 24559},
|
|
val: "setintersect",
|
|
ignoreCase: true,
|
|
want: "\"SetIntersect\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 767, col: 43, offset: 24575},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 767, col: 46, offset: 24578},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 767, col: 50, offset: 24582},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 767, col: 53, offset: 24585},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 767, col: 58, offset: 24590},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 767, col: 69, offset: 24601},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 767, col: 72, offset: 24604},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 767, col: 76, offset: 24608},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 767, col: 79, offset: 24611},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 767, col: 84, offset: 24616},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 767, col: 95, offset: 24627},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 767, col: 98, offset: 24630},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SetUnionExpression",
|
|
pos: position{line: 771, col: 1, offset: 24730},
|
|
expr: &actionExpr{
|
|
pos: position{line: 771, col: 23, offset: 24752},
|
|
run: (*parser).callonSetUnionExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 771, col: 23, offset: 24752},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 771, col: 23, offset: 24752},
|
|
val: "setunion",
|
|
ignoreCase: true,
|
|
want: "\"SetUnion\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 771, col: 35, offset: 24764},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 771, col: 38, offset: 24767},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 771, col: 42, offset: 24771},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 771, col: 45, offset: 24774},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 771, col: 50, offset: 24779},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 771, col: 61, offset: 24790},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 771, col: 64, offset: 24793},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 771, col: 68, offset: 24797},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 771, col: 71, offset: 24800},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 771, col: 76, offset: 24805},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 771, col: 87, offset: 24816},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 771, col: 90, offset: 24819},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IifExpression",
|
|
pos: position{line: 775, col: 1, offset: 24915},
|
|
expr: &actionExpr{
|
|
pos: position{line: 775, col: 18, offset: 24932},
|
|
run: (*parser).callonIifExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 775, col: 18, offset: 24932},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 775, col: 18, offset: 24932},
|
|
val: "iif",
|
|
ignoreCase: true,
|
|
want: "\"IIF\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 25, offset: 24939},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 775, col: 28, offset: 24942},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 32, offset: 24946},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 775, col: 35, offset: 24949},
|
|
label: "condition",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 775, col: 45, offset: 24959},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 56, offset: 24970},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 775, col: 59, offset: 24973},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 63, offset: 24977},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 775, col: 66, offset: 24980},
|
|
label: "trueValue",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 775, col: 76, offset: 24990},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 87, offset: 25001},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 775, col: 90, offset: 25004},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 94, offset: 25008},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 775, col: 97, offset: 25011},
|
|
label: "falseValue",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 775, col: 108, offset: 25022},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 775, col: 119, offset: 25033},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 775, col: 122, offset: 25036},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAbsExpression",
|
|
pos: position{line: 779, col: 1, offset: 25149},
|
|
expr: &actionExpr{
|
|
pos: position{line: 779, col: 22, offset: 25170},
|
|
run: (*parser).callonMathAbsExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 779, col: 22, offset: 25170},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 779, col: 22, offset: 25170},
|
|
val: "abs",
|
|
ignoreCase: true,
|
|
want: "\"ABS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 779, col: 29, offset: 25177},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 779, col: 32, offset: 25180},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 779, col: 36, offset: 25184},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 779, col: 39, offset: 25187},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 779, col: 42, offset: 25190},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 779, col: 53, offset: 25201},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 779, col: 56, offset: 25204},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAcosExpression",
|
|
pos: position{line: 780, col: 1, offset: 25286},
|
|
expr: &actionExpr{
|
|
pos: position{line: 780, col: 23, offset: 25308},
|
|
run: (*parser).callonMathAcosExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 780, col: 23, offset: 25308},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 780, col: 23, offset: 25308},
|
|
val: "acos",
|
|
ignoreCase: true,
|
|
want: "\"ACOS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 780, col: 31, offset: 25316},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 780, col: 34, offset: 25319},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 780, col: 38, offset: 25323},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 780, col: 41, offset: 25326},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 780, col: 44, offset: 25329},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 780, col: 55, offset: 25340},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 780, col: 58, offset: 25343},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAsinExpression",
|
|
pos: position{line: 781, col: 1, offset: 25426},
|
|
expr: &actionExpr{
|
|
pos: position{line: 781, col: 23, offset: 25448},
|
|
run: (*parser).callonMathAsinExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 781, col: 23, offset: 25448},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 781, col: 23, offset: 25448},
|
|
val: "asin",
|
|
ignoreCase: true,
|
|
want: "\"ASIN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 781, col: 31, offset: 25456},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 781, col: 34, offset: 25459},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 781, col: 38, offset: 25463},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 781, col: 41, offset: 25466},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 781, col: 44, offset: 25469},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 781, col: 55, offset: 25480},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 781, col: 58, offset: 25483},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAtanExpression",
|
|
pos: position{line: 782, col: 1, offset: 25566},
|
|
expr: &actionExpr{
|
|
pos: position{line: 782, col: 23, offset: 25588},
|
|
run: (*parser).callonMathAtanExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 782, col: 23, offset: 25588},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 23, offset: 25588},
|
|
val: "atan",
|
|
ignoreCase: true,
|
|
want: "\"ATAN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 31, offset: 25596},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 34, offset: 25599},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 38, offset: 25603},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 782, col: 41, offset: 25606},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 782, col: 44, offset: 25609},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 55, offset: 25620},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 58, offset: 25623},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathCeilingExpression",
|
|
pos: position{line: 783, col: 1, offset: 25706},
|
|
expr: &actionExpr{
|
|
pos: position{line: 783, col: 26, offset: 25731},
|
|
run: (*parser).callonMathCeilingExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 783, col: 26, offset: 25731},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 783, col: 26, offset: 25731},
|
|
val: "ceiling",
|
|
ignoreCase: true,
|
|
want: "\"CEILING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 783, col: 37, offset: 25742},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 783, col: 40, offset: 25745},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 783, col: 44, offset: 25749},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 783, col: 47, offset: 25752},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 783, col: 50, offset: 25755},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 783, col: 61, offset: 25766},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 783, col: 64, offset: 25769},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathCosExpression",
|
|
pos: position{line: 784, col: 1, offset: 25855},
|
|
expr: &actionExpr{
|
|
pos: position{line: 784, col: 22, offset: 25876},
|
|
run: (*parser).callonMathCosExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 784, col: 22, offset: 25876},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 784, col: 22, offset: 25876},
|
|
val: "cos",
|
|
ignoreCase: true,
|
|
want: "\"COS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 784, col: 29, offset: 25883},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 784, col: 32, offset: 25886},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 784, col: 36, offset: 25890},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 784, col: 39, offset: 25893},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 784, col: 42, offset: 25896},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 784, col: 53, offset: 25907},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 784, col: 56, offset: 25910},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathCotExpression",
|
|
pos: position{line: 785, col: 1, offset: 25992},
|
|
expr: &actionExpr{
|
|
pos: position{line: 785, col: 22, offset: 26013},
|
|
run: (*parser).callonMathCotExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 785, col: 22, offset: 26013},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 785, col: 22, offset: 26013},
|
|
val: "cot",
|
|
ignoreCase: true,
|
|
want: "\"COT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 785, col: 29, offset: 26020},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 785, col: 32, offset: 26023},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 785, col: 36, offset: 26027},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 785, col: 39, offset: 26030},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 785, col: 42, offset: 26033},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 785, col: 53, offset: 26044},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 785, col: 56, offset: 26047},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathDegreesExpression",
|
|
pos: position{line: 786, col: 1, offset: 26129},
|
|
expr: &actionExpr{
|
|
pos: position{line: 786, col: 26, offset: 26154},
|
|
run: (*parser).callonMathDegreesExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 786, col: 26, offset: 26154},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 786, col: 26, offset: 26154},
|
|
val: "degrees",
|
|
ignoreCase: true,
|
|
want: "\"DEGREES\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 786, col: 37, offset: 26165},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 786, col: 40, offset: 26168},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 786, col: 44, offset: 26172},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 786, col: 47, offset: 26175},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 786, col: 50, offset: 26178},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 786, col: 61, offset: 26189},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 786, col: 64, offset: 26192},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathExpExpression",
|
|
pos: position{line: 787, col: 1, offset: 26278},
|
|
expr: &actionExpr{
|
|
pos: position{line: 787, col: 22, offset: 26299},
|
|
run: (*parser).callonMathExpExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 787, col: 22, offset: 26299},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 787, col: 22, offset: 26299},
|
|
val: "exp",
|
|
ignoreCase: true,
|
|
want: "\"EXP\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 787, col: 29, offset: 26306},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 787, col: 32, offset: 26309},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 787, col: 36, offset: 26313},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 787, col: 39, offset: 26316},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 787, col: 42, offset: 26319},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 787, col: 53, offset: 26330},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 787, col: 56, offset: 26333},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathFloorExpression",
|
|
pos: position{line: 788, col: 1, offset: 26415},
|
|
expr: &actionExpr{
|
|
pos: position{line: 788, col: 24, offset: 26438},
|
|
run: (*parser).callonMathFloorExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 788, col: 24, offset: 26438},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 788, col: 24, offset: 26438},
|
|
val: "floor",
|
|
ignoreCase: true,
|
|
want: "\"FLOOR\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 788, col: 33, offset: 26447},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 788, col: 36, offset: 26450},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 788, col: 40, offset: 26454},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 788, col: 43, offset: 26457},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 788, col: 46, offset: 26460},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 788, col: 57, offset: 26471},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 788, col: 60, offset: 26474},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitNotExpression",
|
|
pos: position{line: 789, col: 1, offset: 26558},
|
|
expr: &actionExpr{
|
|
pos: position{line: 789, col: 28, offset: 26585},
|
|
run: (*parser).callonMathIntBitNotExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 789, col: 28, offset: 26585},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 789, col: 28, offset: 26585},
|
|
val: "intbitnot",
|
|
ignoreCase: true,
|
|
want: "\"IntBitNot\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 789, col: 41, offset: 26598},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 789, col: 44, offset: 26601},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 789, col: 48, offset: 26605},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 789, col: 51, offset: 26608},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 789, col: 54, offset: 26611},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 789, col: 65, offset: 26622},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 789, col: 68, offset: 26625},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathLog10Expression",
|
|
pos: position{line: 790, col: 1, offset: 26713},
|
|
expr: &actionExpr{
|
|
pos: position{line: 790, col: 24, offset: 26736},
|
|
run: (*parser).callonMathLog10Expression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 790, col: 24, offset: 26736},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 790, col: 24, offset: 26736},
|
|
val: "log10",
|
|
ignoreCase: true,
|
|
want: "\"LOG10\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 790, col: 33, offset: 26745},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 790, col: 36, offset: 26748},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 790, col: 40, offset: 26752},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 790, col: 43, offset: 26755},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 790, col: 46, offset: 26758},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 790, col: 57, offset: 26769},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 790, col: 60, offset: 26772},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathRadiansExpression",
|
|
pos: position{line: 791, col: 1, offset: 26856},
|
|
expr: &actionExpr{
|
|
pos: position{line: 791, col: 26, offset: 26881},
|
|
run: (*parser).callonMathRadiansExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 791, col: 26, offset: 26881},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 791, col: 26, offset: 26881},
|
|
val: "radians",
|
|
ignoreCase: true,
|
|
want: "\"RADIANS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 791, col: 37, offset: 26892},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 791, col: 40, offset: 26895},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 791, col: 44, offset: 26899},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 791, col: 47, offset: 26902},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 791, col: 50, offset: 26905},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 791, col: 61, offset: 26916},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 791, col: 64, offset: 26919},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathRoundExpression",
|
|
pos: position{line: 792, col: 1, offset: 27005},
|
|
expr: &actionExpr{
|
|
pos: position{line: 792, col: 24, offset: 27028},
|
|
run: (*parser).callonMathRoundExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 792, col: 24, offset: 27028},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 792, col: 24, offset: 27028},
|
|
val: "round",
|
|
ignoreCase: true,
|
|
want: "\"ROUND\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 792, col: 33, offset: 27037},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 792, col: 36, offset: 27040},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 792, col: 40, offset: 27044},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 792, col: 43, offset: 27047},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 792, col: 46, offset: 27050},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 792, col: 57, offset: 27061},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 792, col: 60, offset: 27064},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSignExpression",
|
|
pos: position{line: 793, col: 1, offset: 27148},
|
|
expr: &actionExpr{
|
|
pos: position{line: 793, col: 23, offset: 27170},
|
|
run: (*parser).callonMathSignExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 793, col: 23, offset: 27170},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 793, col: 23, offset: 27170},
|
|
val: "sign",
|
|
ignoreCase: true,
|
|
want: "\"SIGN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 793, col: 31, offset: 27178},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 793, col: 34, offset: 27181},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 793, col: 38, offset: 27185},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 793, col: 41, offset: 27188},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 793, col: 44, offset: 27191},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 793, col: 55, offset: 27202},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 793, col: 58, offset: 27205},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSinExpression",
|
|
pos: position{line: 794, col: 1, offset: 27288},
|
|
expr: &actionExpr{
|
|
pos: position{line: 794, col: 22, offset: 27309},
|
|
run: (*parser).callonMathSinExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 794, col: 22, offset: 27309},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 794, col: 22, offset: 27309},
|
|
val: "sin",
|
|
ignoreCase: true,
|
|
want: "\"SIN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 794, col: 29, offset: 27316},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 794, col: 32, offset: 27319},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 794, col: 36, offset: 27323},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 794, col: 39, offset: 27326},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 794, col: 42, offset: 27329},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 794, col: 53, offset: 27340},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 794, col: 56, offset: 27343},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSqrtExpression",
|
|
pos: position{line: 795, col: 1, offset: 27425},
|
|
expr: &actionExpr{
|
|
pos: position{line: 795, col: 23, offset: 27447},
|
|
run: (*parser).callonMathSqrtExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 795, col: 23, offset: 27447},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 795, col: 23, offset: 27447},
|
|
val: "sqrt",
|
|
ignoreCase: true,
|
|
want: "\"SQRT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 795, col: 31, offset: 27455},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 795, col: 34, offset: 27458},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 795, col: 38, offset: 27462},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 795, col: 41, offset: 27465},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 795, col: 44, offset: 27468},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 795, col: 55, offset: 27479},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 795, col: 58, offset: 27482},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSquareExpression",
|
|
pos: position{line: 796, col: 1, offset: 27565},
|
|
expr: &actionExpr{
|
|
pos: position{line: 796, col: 25, offset: 27589},
|
|
run: (*parser).callonMathSquareExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 796, col: 25, offset: 27589},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 796, col: 25, offset: 27589},
|
|
val: "square",
|
|
ignoreCase: true,
|
|
want: "\"SQUARE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 796, col: 35, offset: 27599},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 796, col: 38, offset: 27602},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 796, col: 42, offset: 27606},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 796, col: 45, offset: 27609},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 796, col: 48, offset: 27612},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 796, col: 59, offset: 27623},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 796, col: 62, offset: 27626},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathTanExpression",
|
|
pos: position{line: 797, col: 1, offset: 27711},
|
|
expr: &actionExpr{
|
|
pos: position{line: 797, col: 22, offset: 27732},
|
|
run: (*parser).callonMathTanExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 797, col: 22, offset: 27732},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 797, col: 22, offset: 27732},
|
|
val: "tan",
|
|
ignoreCase: true,
|
|
want: "\"TAN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 797, col: 29, offset: 27739},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 797, col: 32, offset: 27742},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 797, col: 36, offset: 27746},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 797, col: 39, offset: 27749},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 797, col: 42, offset: 27752},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 797, col: 53, offset: 27763},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 797, col: 56, offset: 27766},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathTruncExpression",
|
|
pos: position{line: 798, col: 1, offset: 27848},
|
|
expr: &actionExpr{
|
|
pos: position{line: 798, col: 24, offset: 27871},
|
|
run: (*parser).callonMathTruncExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 798, col: 24, offset: 27871},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 798, col: 24, offset: 27871},
|
|
val: "trunc",
|
|
ignoreCase: true,
|
|
want: "\"TRUNC\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 798, col: 33, offset: 27880},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 798, col: 36, offset: 27883},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 798, col: 40, offset: 27887},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 798, col: 43, offset: 27890},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 798, col: 46, offset: 27893},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 798, col: 57, offset: 27904},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 798, col: 60, offset: 27907},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAtn2Expression",
|
|
pos: position{line: 800, col: 1, offset: 27992},
|
|
expr: &actionExpr{
|
|
pos: position{line: 800, col: 23, offset: 28014},
|
|
run: (*parser).callonMathAtn2Expression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 800, col: 23, offset: 28014},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 23, offset: 28014},
|
|
val: "atn2",
|
|
ignoreCase: true,
|
|
want: "\"ATN2\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 31, offset: 28022},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 34, offset: 28025},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 38, offset: 28029},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 800, col: 41, offset: 28032},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 800, col: 46, offset: 28037},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 57, offset: 28048},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 60, offset: 28051},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 64, offset: 28055},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 800, col: 67, offset: 28058},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 800, col: 72, offset: 28063},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 83, offset: 28074},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 86, offset: 28077},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntAddExpression",
|
|
pos: position{line: 801, col: 1, offset: 28168},
|
|
expr: &actionExpr{
|
|
pos: position{line: 801, col: 25, offset: 28192},
|
|
run: (*parser).callonMathIntAddExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 801, col: 25, offset: 28192},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 25, offset: 28192},
|
|
val: "intadd",
|
|
ignoreCase: true,
|
|
want: "\"IntAdd\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 35, offset: 28202},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 38, offset: 28205},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 42, offset: 28209},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 801, col: 45, offset: 28212},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 801, col: 50, offset: 28217},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 61, offset: 28228},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 64, offset: 28231},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 68, offset: 28235},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 801, col: 71, offset: 28238},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 801, col: 76, offset: 28243},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 87, offset: 28254},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 90, offset: 28257},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitAndExpression",
|
|
pos: position{line: 802, col: 1, offset: 28350},
|
|
expr: &actionExpr{
|
|
pos: position{line: 802, col: 28, offset: 28377},
|
|
run: (*parser).callonMathIntBitAndExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 802, col: 28, offset: 28377},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 28, offset: 28377},
|
|
val: "intbitand",
|
|
ignoreCase: true,
|
|
want: "\"IntBitAnd\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 41, offset: 28390},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 44, offset: 28393},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 48, offset: 28397},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 802, col: 51, offset: 28400},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 802, col: 56, offset: 28405},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 67, offset: 28416},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 70, offset: 28419},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 74, offset: 28423},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 802, col: 77, offset: 28426},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 802, col: 82, offset: 28431},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 93, offset: 28442},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 96, offset: 28445},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitLeftShiftExpression",
|
|
pos: position{line: 803, col: 1, offset: 28541},
|
|
expr: &actionExpr{
|
|
pos: position{line: 803, col: 34, offset: 28574},
|
|
run: (*parser).callonMathIntBitLeftShiftExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 803, col: 34, offset: 28574},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 34, offset: 28574},
|
|
val: "intbitleftshift",
|
|
ignoreCase: true,
|
|
want: "\"IntBitLeftShift\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 53, offset: 28593},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 56, offset: 28596},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 60, offset: 28600},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 803, col: 63, offset: 28603},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 803, col: 68, offset: 28608},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 79, offset: 28619},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 82, offset: 28622},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 86, offset: 28626},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 803, col: 89, offset: 28629},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 803, col: 94, offset: 28634},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 105, offset: 28645},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 108, offset: 28648},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitOrExpression",
|
|
pos: position{line: 804, col: 1, offset: 28750},
|
|
expr: &actionExpr{
|
|
pos: position{line: 804, col: 27, offset: 28776},
|
|
run: (*parser).callonMathIntBitOrExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 804, col: 27, offset: 28776},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 27, offset: 28776},
|
|
val: "intbitor",
|
|
ignoreCase: true,
|
|
want: "\"IntBitOr\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 39, offset: 28788},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 42, offset: 28791},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 46, offset: 28795},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 804, col: 49, offset: 28798},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 804, col: 54, offset: 28803},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 65, offset: 28814},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 68, offset: 28817},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 72, offset: 28821},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 804, col: 75, offset: 28824},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 804, col: 80, offset: 28829},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 91, offset: 28840},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 94, offset: 28843},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitRightShiftExpression",
|
|
pos: position{line: 805, col: 1, offset: 28938},
|
|
expr: &actionExpr{
|
|
pos: position{line: 805, col: 35, offset: 28972},
|
|
run: (*parser).callonMathIntBitRightShiftExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 805, col: 35, offset: 28972},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 35, offset: 28972},
|
|
val: "intbitrightshift",
|
|
ignoreCase: true,
|
|
want: "\"IntBitRightShift\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 55, offset: 28992},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 58, offset: 28995},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 62, offset: 28999},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 805, col: 65, offset: 29002},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 805, col: 70, offset: 29007},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 81, offset: 29018},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 84, offset: 29021},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 88, offset: 29025},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 805, col: 91, offset: 29028},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 805, col: 96, offset: 29033},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 107, offset: 29044},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 110, offset: 29047},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitXorExpression",
|
|
pos: position{line: 806, col: 1, offset: 29150},
|
|
expr: &actionExpr{
|
|
pos: position{line: 806, col: 28, offset: 29177},
|
|
run: (*parser).callonMathIntBitXorExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 806, col: 28, offset: 29177},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 806, col: 28, offset: 29177},
|
|
val: "intbitxor",
|
|
ignoreCase: true,
|
|
want: "\"IntBitXor\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 806, col: 41, offset: 29190},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 806, col: 44, offset: 29193},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 806, col: 48, offset: 29197},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 806, col: 51, offset: 29200},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 806, col: 56, offset: 29205},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 806, col: 67, offset: 29216},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 806, col: 70, offset: 29219},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 806, col: 74, offset: 29223},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 806, col: 77, offset: 29226},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 806, col: 82, offset: 29231},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 806, col: 93, offset: 29242},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 806, col: 96, offset: 29245},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntDivExpression",
|
|
pos: position{line: 807, col: 1, offset: 29341},
|
|
expr: &actionExpr{
|
|
pos: position{line: 807, col: 25, offset: 29365},
|
|
run: (*parser).callonMathIntDivExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 807, col: 25, offset: 29365},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 25, offset: 29365},
|
|
val: "intdiv",
|
|
ignoreCase: true,
|
|
want: "\"IntDiv\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 35, offset: 29375},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 38, offset: 29378},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 42, offset: 29382},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 807, col: 45, offset: 29385},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 807, col: 50, offset: 29390},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 61, offset: 29401},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 64, offset: 29404},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 68, offset: 29408},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 807, col: 71, offset: 29411},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 807, col: 76, offset: 29416},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 87, offset: 29427},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 90, offset: 29430},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntModExpression",
|
|
pos: position{line: 808, col: 1, offset: 29523},
|
|
expr: &actionExpr{
|
|
pos: position{line: 808, col: 25, offset: 29547},
|
|
run: (*parser).callonMathIntModExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 808, col: 25, offset: 29547},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 25, offset: 29547},
|
|
val: "intmod",
|
|
ignoreCase: true,
|
|
want: "\"IntMod\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 35, offset: 29557},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 38, offset: 29560},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 42, offset: 29564},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 808, col: 45, offset: 29567},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 808, col: 50, offset: 29572},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 61, offset: 29583},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 64, offset: 29586},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 68, offset: 29590},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 808, col: 71, offset: 29593},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 808, col: 76, offset: 29598},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 87, offset: 29609},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 90, offset: 29612},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntMulExpression",
|
|
pos: position{line: 809, col: 1, offset: 29705},
|
|
expr: &actionExpr{
|
|
pos: position{line: 809, col: 25, offset: 29729},
|
|
run: (*parser).callonMathIntMulExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 809, col: 25, offset: 29729},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 25, offset: 29729},
|
|
val: "intmul",
|
|
ignoreCase: true,
|
|
want: "\"IntMul\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 35, offset: 29739},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 38, offset: 29742},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 42, offset: 29746},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 809, col: 45, offset: 29749},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 809, col: 50, offset: 29754},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 61, offset: 29765},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 64, offset: 29768},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 68, offset: 29772},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 809, col: 71, offset: 29775},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 809, col: 76, offset: 29780},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 87, offset: 29791},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 90, offset: 29794},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntSubExpression",
|
|
pos: position{line: 810, col: 1, offset: 29887},
|
|
expr: &actionExpr{
|
|
pos: position{line: 810, col: 25, offset: 29911},
|
|
run: (*parser).callonMathIntSubExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 810, col: 25, offset: 29911},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 25, offset: 29911},
|
|
val: "intsub",
|
|
ignoreCase: true,
|
|
want: "\"IntSub\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 35, offset: 29921},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 38, offset: 29924},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 42, offset: 29928},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 810, col: 45, offset: 29931},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 810, col: 50, offset: 29936},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 61, offset: 29947},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 64, offset: 29950},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 68, offset: 29954},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 810, col: 71, offset: 29957},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 810, col: 76, offset: 29962},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 87, offset: 29973},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 90, offset: 29976},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathPowerExpression",
|
|
pos: position{line: 811, col: 1, offset: 30069},
|
|
expr: &actionExpr{
|
|
pos: position{line: 811, col: 24, offset: 30092},
|
|
run: (*parser).callonMathPowerExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 811, col: 24, offset: 30092},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 24, offset: 30092},
|
|
val: "power",
|
|
ignoreCase: true,
|
|
want: "\"POWER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 33, offset: 30101},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 36, offset: 30104},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 40, offset: 30108},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 811, col: 43, offset: 30111},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 811, col: 48, offset: 30116},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 59, offset: 30127},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 62, offset: 30130},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 66, offset: 30134},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 811, col: 69, offset: 30137},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 811, col: 74, offset: 30142},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 85, offset: 30153},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 88, offset: 30156},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathLogExpression",
|
|
pos: position{line: 813, col: 1, offset: 30249},
|
|
expr: &actionExpr{
|
|
pos: position{line: 813, col: 22, offset: 30270},
|
|
run: (*parser).callonMathLogExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 813, col: 22, offset: 30270},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 22, offset: 30270},
|
|
val: "log",
|
|
ignoreCase: true,
|
|
want: "\"LOG\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 29, offset: 30277},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 32, offset: 30280},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 36, offset: 30284},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 813, col: 39, offset: 30287},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 813, col: 43, offset: 30291},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 813, col: 54, offset: 30302},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 813, col: 61, offset: 30309},
|
|
expr: &actionExpr{
|
|
pos: position{line: 813, col: 62, offset: 30310},
|
|
run: (*parser).callonMathLogExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 813, col: 62, offset: 30310},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 62, offset: 30310},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 65, offset: 30313},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 69, offset: 30317},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 813, col: 72, offset: 30320},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 813, col: 75, offset: 30323},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 107, offset: 30355},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 110, offset: 30358},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathNumberBinExpression",
|
|
pos: position{line: 816, col: 1, offset: 30480},
|
|
expr: &actionExpr{
|
|
pos: position{line: 816, col: 28, offset: 30507},
|
|
run: (*parser).callonMathNumberBinExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 816, col: 28, offset: 30507},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 28, offset: 30507},
|
|
val: "numberbin",
|
|
ignoreCase: true,
|
|
want: "\"NumberBin\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 41, offset: 30520},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 44, offset: 30523},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 48, offset: 30527},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 816, col: 51, offset: 30530},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 816, col: 55, offset: 30534},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 816, col: 66, offset: 30545},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 816, col: 73, offset: 30552},
|
|
expr: &actionExpr{
|
|
pos: position{line: 816, col: 74, offset: 30553},
|
|
run: (*parser).callonMathNumberBinExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 816, col: 74, offset: 30553},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 74, offset: 30553},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 77, offset: 30556},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 81, offset: 30560},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 816, col: 84, offset: 30563},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 816, col: 87, offset: 30566},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 119, offset: 30598},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 122, offset: 30601},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathPiExpression",
|
|
pos: position{line: 819, col: 1, offset: 30729},
|
|
expr: &actionExpr{
|
|
pos: position{line: 819, col: 21, offset: 30749},
|
|
run: (*parser).callonMathPiExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 819, col: 21, offset: 30749},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 819, col: 21, offset: 30749},
|
|
val: "pi",
|
|
ignoreCase: true,
|
|
want: "\"PI\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 819, col: 27, offset: 30755},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 819, col: 30, offset: 30758},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 819, col: 34, offset: 30762},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 819, col: 37, offset: 30765},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathRandExpression",
|
|
pos: position{line: 820, col: 1, offset: 30844},
|
|
expr: &actionExpr{
|
|
pos: position{line: 820, col: 23, offset: 30866},
|
|
run: (*parser).callonMathRandExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 820, col: 23, offset: 30866},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 23, offset: 30866},
|
|
val: "rand",
|
|
ignoreCase: true,
|
|
want: "\"RAND\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 31, offset: 30874},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 34, offset: 30877},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 38, offset: 30881},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 41, offset: 30884},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "InFunction",
|
|
pos: position{line: 822, col: 1, offset: 30966},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 822, col: 15, offset: 30980},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 822, col: 15, offset: 30980},
|
|
run: (*parser).callonInFunction2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 822, col: 15, offset: 30980},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 822, col: 15, offset: 30980},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 822, col: 19, offset: 30984},
|
|
name: "SelectProperty",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 34, offset: 30999},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 822, col: 37, offset: 31002},
|
|
label: "notIn",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 822, col: 43, offset: 31008},
|
|
expr: &seqExpr{
|
|
pos: position{line: 822, col: 44, offset: 31009},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 822, col: 44, offset: 31009},
|
|
val: "not",
|
|
ignoreCase: true,
|
|
want: "\"NOT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 51, offset: 31016},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 56, offset: 31021},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 59, offset: 31024},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 822, col: 62, offset: 31027},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 66, offset: 31031},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 822, col: 69, offset: 31034},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 822, col: 73, offset: 31038},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 822, col: 84, offset: 31049},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 822, col: 91, offset: 31056},
|
|
expr: &actionExpr{
|
|
pos: position{line: 822, col: 92, offset: 31057},
|
|
run: (*parser).callonInFunction20,
|
|
expr: &seqExpr{
|
|
pos: position{line: 822, col: 92, offset: 31057},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 92, offset: 31057},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 822, col: 95, offset: 31060},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 99, offset: 31064},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 822, col: 102, offset: 31067},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 822, col: 105, offset: 31070},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 822, col: 137, offset: 31102},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 822, col: 140, offset: 31105},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 836, col: 3, offset: 31498},
|
|
run: (*parser).callonInFunction29,
|
|
expr: &seqExpr{
|
|
pos: position{line: 836, col: 3, offset: 31498},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 836, col: 3, offset: 31498},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 7, offset: 31502},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 836, col: 10, offset: 31505},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 836, col: 14, offset: 31509},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 25, offset: 31520},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 836, col: 28, offset: 31523},
|
|
label: "notIn",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 836, col: 34, offset: 31529},
|
|
expr: &seqExpr{
|
|
pos: position{line: 836, col: 35, offset: 31530},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 836, col: 35, offset: 31530},
|
|
val: "not",
|
|
ignoreCase: true,
|
|
want: "\"NOT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 42, offset: 31537},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 47, offset: 31542},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 50, offset: 31545},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 836, col: 53, offset: 31548},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 57, offset: 31552},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 836, col: 60, offset: 31555},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 836, col: 64, offset: 31559},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 836, col: 75, offset: 31570},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 836, col: 82, offset: 31577},
|
|
expr: &actionExpr{
|
|
pos: position{line: 836, col: 83, offset: 31578},
|
|
run: (*parser).callonInFunction49,
|
|
expr: &seqExpr{
|
|
pos: position{line: 836, col: 83, offset: 31578},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 83, offset: 31578},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 836, col: 86, offset: 31581},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 90, offset: 31585},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 836, col: 93, offset: 31588},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 836, col: 96, offset: 31591},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 128, offset: 31623},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 836, col: 131, offset: 31626},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 836, col: 135, offset: 31630},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 836, col: 138, offset: 31633},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AvgAggregateExpression",
|
|
pos: position{line: 851, col: 1, offset: 32021},
|
|
expr: &actionExpr{
|
|
pos: position{line: 851, col: 29, offset: 32049},
|
|
run: (*parser).callonAvgAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 851, col: 29, offset: 32049},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 851, col: 29, offset: 32049},
|
|
val: "avg",
|
|
ignoreCase: true,
|
|
want: "\"AVG\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 851, col: 36, offset: 32056},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 851, col: 40, offset: 32060},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 851, col: 43, offset: 32063},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 851, col: 46, offset: 32066},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 851, col: 58, offset: 32078},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 851, col: 61, offset: 32081},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "CountAggregateExpression",
|
|
pos: position{line: 855, col: 1, offset: 32173},
|
|
expr: &actionExpr{
|
|
pos: position{line: 855, col: 29, offset: 32201},
|
|
run: (*parser).callonCountAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 855, col: 29, offset: 32201},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 855, col: 29, offset: 32201},
|
|
val: "count",
|
|
ignoreCase: true,
|
|
want: "\"COUNT\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 855, col: 38, offset: 32210},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 855, col: 42, offset: 32214},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 855, col: 45, offset: 32217},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 855, col: 48, offset: 32220},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 855, col: 59, offset: 32231},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 855, col: 62, offset: 32234},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MaxAggregateExpression",
|
|
pos: position{line: 859, col: 1, offset: 32328},
|
|
expr: &actionExpr{
|
|
pos: position{line: 859, col: 29, offset: 32356},
|
|
run: (*parser).callonMaxAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 859, col: 29, offset: 32356},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 859, col: 29, offset: 32356},
|
|
val: "max",
|
|
ignoreCase: true,
|
|
want: "\"MAX\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 859, col: 36, offset: 32363},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 859, col: 40, offset: 32367},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 859, col: 43, offset: 32370},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 859, col: 46, offset: 32373},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 859, col: 57, offset: 32384},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 859, col: 60, offset: 32387},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MinAggregateExpression",
|
|
pos: position{line: 863, col: 1, offset: 32479},
|
|
expr: &actionExpr{
|
|
pos: position{line: 863, col: 29, offset: 32507},
|
|
run: (*parser).callonMinAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 863, col: 29, offset: 32507},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 863, col: 29, offset: 32507},
|
|
val: "min",
|
|
ignoreCase: true,
|
|
want: "\"MIN\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 863, col: 36, offset: 32514},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 863, col: 40, offset: 32518},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 863, col: 43, offset: 32521},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 863, col: 46, offset: 32524},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 863, col: 57, offset: 32535},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 863, col: 60, offset: 32538},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SumAggregateExpression",
|
|
pos: position{line: 867, col: 1, offset: 32630},
|
|
expr: &actionExpr{
|
|
pos: position{line: 867, col: 29, offset: 32658},
|
|
run: (*parser).callonSumAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 867, col: 29, offset: 32658},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 867, col: 29, offset: 32658},
|
|
val: "sum",
|
|
ignoreCase: true,
|
|
want: "\"SUM\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 867, col: 36, offset: 32665},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 867, col: 40, offset: 32669},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 867, col: 43, offset: 32672},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 867, col: 46, offset: 32675},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 867, col: 57, offset: 32686},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 867, col: 60, offset: 32689},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Integer",
|
|
pos: position{line: 871, col: 1, offset: 32781},
|
|
expr: &actionExpr{
|
|
pos: position{line: 871, col: 12, offset: 32792},
|
|
run: (*parser).callonInteger1,
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 871, col: 12, offset: 32792},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 871, col: 12, offset: 32792},
|
|
val: "[0-9]",
|
|
ranges: []rune{'0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringCharacter",
|
|
pos: position{line: 875, col: 1, offset: 32844},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 875, col: 20, offset: 32863},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 875, col: 20, offset: 32863},
|
|
run: (*parser).callonStringCharacter2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 875, col: 20, offset: 32863},
|
|
exprs: []any{
|
|
¬Expr{
|
|
pos: position{line: 875, col: 20, offset: 32863},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 875, col: 22, offset: 32865},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 875, col: 22, offset: 32865},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 875, col: 28, offset: 32871},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&anyMatcher{
|
|
line: 875, col: 34, offset: 32877,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 876, col: 5, offset: 32914},
|
|
run: (*parser).callonStringCharacter9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 876, col: 5, offset: 32914},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 876, col: 5, offset: 32914},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 876, col: 10, offset: 32919},
|
|
label: "seq",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 876, col: 14, offset: 32923},
|
|
name: "EscapeSequenceCharacter",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SingleQuotedStringCharacter",
|
|
pos: position{line: 878, col: 1, offset: 32968},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 878, col: 32, offset: 32999},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 878, col: 32, offset: 32999},
|
|
run: (*parser).callonSingleQuotedStringCharacter2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 878, col: 32, offset: 32999},
|
|
exprs: []any{
|
|
¬Expr{
|
|
pos: position{line: 878, col: 32, offset: 32999},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 878, col: 34, offset: 33001},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 878, col: 34, offset: 33001},
|
|
val: "'",
|
|
ignoreCase: false,
|
|
want: "\"'\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 878, col: 40, offset: 33007},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&anyMatcher{
|
|
line: 878, col: 46, offset: 33013,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 879, col: 5, offset: 33050},
|
|
run: (*parser).callonSingleQuotedStringCharacter9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 879, col: 5, offset: 33050},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 879, col: 5, offset: 33050},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 879, col: 10, offset: 33055},
|
|
label: "seq",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 879, col: 14, offset: 33059},
|
|
name: "EscapeSequenceCharacter",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "EscapeSequenceCharacter",
|
|
pos: position{line: 881, col: 1, offset: 33104},
|
|
expr: &labeledExpr{
|
|
pos: position{line: 881, col: 28, offset: 33131},
|
|
label: "char",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 881, col: 33, offset: 33136},
|
|
name: "EscapeCharacter",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "EscapeCharacter",
|
|
pos: position{line: 883, col: 1, offset: 33153},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 883, col: 20, offset: 33172},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 883, col: 20, offset: 33172},
|
|
run: (*parser).callonEscapeCharacter2,
|
|
expr: &litMatcher{
|
|
pos: position{line: 883, col: 20, offset: 33172},
|
|
val: "'",
|
|
ignoreCase: false,
|
|
want: "\"'\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 884, col: 5, offset: 33200},
|
|
run: (*parser).callonEscapeCharacter4,
|
|
expr: &litMatcher{
|
|
pos: position{line: 884, col: 5, offset: 33200},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 885, col: 5, offset: 33229},
|
|
run: (*parser).callonEscapeCharacter6,
|
|
expr: &litMatcher{
|
|
pos: position{line: 885, col: 5, offset: 33229},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 886, col: 5, offset: 33259},
|
|
run: (*parser).callonEscapeCharacter8,
|
|
expr: &litMatcher{
|
|
pos: position{line: 886, col: 5, offset: 33259},
|
|
val: "b",
|
|
ignoreCase: false,
|
|
want: "\"b\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 887, col: 5, offset: 33288},
|
|
run: (*parser).callonEscapeCharacter10,
|
|
expr: &litMatcher{
|
|
pos: position{line: 887, col: 5, offset: 33288},
|
|
val: "f",
|
|
ignoreCase: false,
|
|
want: "\"f\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 888, col: 5, offset: 33317},
|
|
run: (*parser).callonEscapeCharacter12,
|
|
expr: &litMatcher{
|
|
pos: position{line: 888, col: 5, offset: 33317},
|
|
val: "n",
|
|
ignoreCase: false,
|
|
want: "\"n\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 889, col: 5, offset: 33346},
|
|
run: (*parser).callonEscapeCharacter14,
|
|
expr: &litMatcher{
|
|
pos: position{line: 889, col: 5, offset: 33346},
|
|
val: "r",
|
|
ignoreCase: false,
|
|
want: "\"r\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 890, col: 5, offset: 33375},
|
|
run: (*parser).callonEscapeCharacter16,
|
|
expr: &litMatcher{
|
|
pos: position{line: 890, col: 5, offset: 33375},
|
|
val: "t",
|
|
ignoreCase: false,
|
|
want: "\"t\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "non_escape_character",
|
|
pos: position{line: 892, col: 1, offset: 33401},
|
|
expr: &actionExpr{
|
|
pos: position{line: 892, col: 25, offset: 33425},
|
|
run: (*parser).callonnon_escape_character1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 892, col: 25, offset: 33425},
|
|
exprs: []any{
|
|
¬Expr{
|
|
pos: position{line: 892, col: 25, offset: 33425},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 892, col: 27, offset: 33427},
|
|
name: "escape_character",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 892, col: 45, offset: 33445},
|
|
label: "char",
|
|
expr: &anyMatcher{
|
|
line: 892, col: 50, offset: 33450,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ws",
|
|
pos: position{line: 895, col: 1, offset: 33489},
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 895, col: 7, offset: 33495},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 895, col: 7, offset: 33495},
|
|
val: "[ \\t\\n\\r]",
|
|
chars: []rune{' ', '\t', '\n', '\r'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "wss",
|
|
pos: position{line: 897, col: 1, offset: 33507},
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 897, col: 8, offset: 33514},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 897, col: 8, offset: 33514},
|
|
val: "[ \\t\\n\\r]",
|
|
chars: []rune{' ', '\t', '\n', '\r'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "EOF",
|
|
pos: position{line: 899, col: 1, offset: 33526},
|
|
expr: ¬Expr{
|
|
pos: position{line: 899, col: 8, offset: 33533},
|
|
expr: &anyMatcher{
|
|
line: 899, col: 9, offset: 33534,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
func (c *current) onInput1(selectStmt any) (any, error) {
|
|
return selectStmt, nil
|
|
}
|
|
|
|
func (p *parser) callonInput1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInput1(stack["selectStmt"])
|
|
}
|
|
|
|
func (c *current) onSelectStmt22(join any) (any, error) {
|
|
return join, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectStmt22() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectStmt22(stack["join"])
|
|
}
|
|
|
|
func (c *current) onSelectStmt30(condition any) (any, error) {
|
|
return condition, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectStmt30() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectStmt30(stack["condition"])
|
|
}
|
|
|
|
func (c *current) onSelectStmt39(columns any) (any, error) {
|
|
return columns, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectStmt39() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectStmt39(stack["columns"])
|
|
}
|
|
|
|
func (c *current) onSelectStmt48(order any) (any, error) {
|
|
return order, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectStmt48() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectStmt48(stack["order"])
|
|
}
|
|
|
|
func (c *current) onSelectStmt55(offset any) (any, error) {
|
|
return offset, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectStmt55() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectStmt55(stack["offset"])
|
|
}
|
|
|
|
func (c *current) onSelectStmt1(distinctClause, topClause, columns, fromClause, joinClauses, whereClause, groupByClause, orderByClause, offsetClause any) (any, error) {
|
|
return makeSelectStmt(columns, fromClause, joinClauses, whereClause,
|
|
distinctClause, topClause, groupByClause, orderByClause, offsetClause)
|
|
}
|
|
|
|
func (p *parser) callonSelectStmt1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectStmt1(stack["distinctClause"], stack["topClause"], stack["columns"], stack["fromClause"], stack["joinClauses"], stack["whereClause"], stack["groupByClause"], stack["orderByClause"], stack["offsetClause"])
|
|
}
|
|
|
|
func (c *current) onTopClause1(count any) (any, error) {
|
|
return count, nil
|
|
}
|
|
|
|
func (p *parser) callonTopClause1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onTopClause1(stack["count"])
|
|
}
|
|
|
|
func (c *current) onFromClause9(column any) (any, error) {
|
|
return column, nil
|
|
}
|
|
|
|
func (p *parser) callonFromClause9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onFromClause9(stack["column"])
|
|
}
|
|
|
|
func (c *current) onFromClause2(table, selectItem any) (any, error) {
|
|
tableTyped := table.(parsers.Table)
|
|
|
|
if selectItem != nil {
|
|
tableTyped.SelectItem = selectItem.(parsers.SelectItem)
|
|
tableTyped.IsInSelect = true
|
|
}
|
|
|
|
return tableTyped, nil
|
|
}
|
|
|
|
func (p *parser) callonFromClause2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onFromClause2(stack["table"], stack["selectItem"])
|
|
}
|
|
|
|
func (c *current) onFromClause16(column any) (any, error) {
|
|
tableSelectItem := column.(parsers.SelectItem)
|
|
table := parsers.Table{
|
|
Value: tableSelectItem.Alias,
|
|
SelectItem: tableSelectItem,
|
|
}
|
|
return table, nil
|
|
}
|
|
|
|
func (p *parser) callonFromClause16() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onFromClause16(stack["column"])
|
|
}
|
|
|
|
func (c *current) onFromClause22(subQuery any) (any, error) {
|
|
subQueryTyped := subQuery.(parsers.SelectItem)
|
|
table := parsers.Table{
|
|
Value: subQueryTyped.Alias,
|
|
SelectItem: subQueryTyped,
|
|
}
|
|
return table, nil
|
|
}
|
|
|
|
func (p *parser) callonFromClause22() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onFromClause22(stack["subQuery"])
|
|
}
|
|
|
|
func (c *current) onSubQuery5(exists any) (any, error) {
|
|
return exists, nil
|
|
}
|
|
|
|
func (p *parser) callonSubQuery5() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSubQuery5(stack["exists"])
|
|
}
|
|
|
|
func (c *current) onSubQuery1(exists, selectStmt any) (any, error) {
|
|
if selectStatement, isGoodValue := selectStmt.(parsers.SelectStmt); isGoodValue {
|
|
selectStatement.Exists = exists != nil
|
|
return selectStatement, nil
|
|
}
|
|
|
|
return selectStmt, nil
|
|
}
|
|
|
|
func (p *parser) callonSubQuery1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSubQuery1(stack["exists"], stack["selectStmt"])
|
|
}
|
|
|
|
func (c *current) onSubQuerySelectItem7(alias any) (any, error) {
|
|
return alias, nil
|
|
}
|
|
|
|
func (p *parser) callonSubQuerySelectItem7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSubQuerySelectItem7(stack["alias"])
|
|
}
|
|
|
|
func (c *current) onSubQuerySelectItem1(subQuery, asClause any) (any, error) {
|
|
selectItem := parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeSubQuery,
|
|
Value: subQuery,
|
|
}
|
|
|
|
if tableName, isString := asClause.(string); isString {
|
|
selectItem.Alias = tableName
|
|
}
|
|
|
|
return selectItem, nil
|
|
}
|
|
|
|
func (p *parser) callonSubQuerySelectItem1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSubQuerySelectItem1(stack["subQuery"], stack["asClause"])
|
|
}
|
|
|
|
func (c *current) onJoinClause2(table, column any) (any, error) {
|
|
return makeJoin(table, column)
|
|
}
|
|
|
|
func (p *parser) callonJoinClause2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onJoinClause2(stack["table"], stack["column"])
|
|
}
|
|
|
|
func (c *current) onJoinClause13(subQuery any) (any, error) {
|
|
return makeJoin(nil, subQuery)
|
|
}
|
|
|
|
func (p *parser) callonJoinClause13() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onJoinClause13(stack["subQuery"])
|
|
}
|
|
|
|
func (c *current) onOffsetClause1(offset, limit any) (any, error) {
|
|
return []interface{}{offset.(parsers.Constant).Value, limit.(parsers.Constant).Value}, nil
|
|
}
|
|
|
|
func (p *parser) callonOffsetClause1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOffsetClause1(stack["offset"], stack["limit"])
|
|
}
|
|
|
|
func (c *current) onSelectAsterisk1() (any, error) {
|
|
selectItem, _ := makeSelectItem("c", make([]interface{}, 0), parsers.SelectItemTypeField)
|
|
selectItem.IsTopLevel = true
|
|
return makeColumnList(selectItem, make([]interface{}, 0))
|
|
}
|
|
|
|
func (p *parser) callonSelectAsterisk1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectAsterisk1()
|
|
}
|
|
|
|
func (c *current) onColumnList7(coll any) (any, error) {
|
|
return coll, nil
|
|
}
|
|
|
|
func (p *parser) callonColumnList7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onColumnList7(stack["coll"])
|
|
}
|
|
|
|
func (c *current) onColumnList1(column, other_columns any) (any, error) {
|
|
return makeColumnList(column, other_columns)
|
|
}
|
|
|
|
func (p *parser) callonColumnList1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onColumnList1(stack["column"], stack["other_columns"])
|
|
}
|
|
|
|
func (c *current) onExpressionOrSelectItem2(expression, asClause any) (any, error) {
|
|
switch typedValue := expression.(type) {
|
|
case parsers.ComparisonExpression, parsers.LogicalExpression:
|
|
selectItem := parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeExpression,
|
|
Value: typedValue,
|
|
}
|
|
|
|
if aliasValue, ok := asClause.(string); ok {
|
|
selectItem.Alias = aliasValue
|
|
}
|
|
|
|
return selectItem, nil
|
|
case parsers.SelectItem:
|
|
if aliasValue, ok := asClause.(string); ok {
|
|
typedValue.Alias = aliasValue
|
|
}
|
|
return typedValue, nil
|
|
default:
|
|
return typedValue, nil
|
|
}
|
|
}
|
|
|
|
func (p *parser) callonExpressionOrSelectItem2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onExpressionOrSelectItem2(stack["expression"], stack["asClause"])
|
|
}
|
|
|
|
func (c *current) onExpressionOrSelectItem9(item any) (any, error) {
|
|
return item, nil
|
|
}
|
|
|
|
func (p *parser) callonExpressionOrSelectItem9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onExpressionOrSelectItem9(stack["item"])
|
|
}
|
|
|
|
func (c *current) onSelectValueSpec1(column any) (any, error) {
|
|
selectItem := column.(parsers.SelectItem)
|
|
selectItem.IsTopLevel = true
|
|
return makeColumnList(selectItem, make([]interface{}, 0))
|
|
}
|
|
|
|
func (p *parser) callonSelectValueSpec1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectValueSpec1(stack["column"])
|
|
}
|
|
|
|
func (c *current) onTableName1(key any) (any, error) {
|
|
return parsers.Table{Value: key.(string)}, nil
|
|
}
|
|
|
|
func (p *parser) callonTableName1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onTableName1(stack["key"])
|
|
}
|
|
|
|
func (c *current) onSelectArray1(columns any) (any, error) {
|
|
return makeSelectArray(columns)
|
|
}
|
|
|
|
func (p *parser) callonSelectArray1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectArray1(stack["columns"])
|
|
}
|
|
|
|
func (c *current) onSelectObject11(coll any) (any, error) {
|
|
return coll, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectObject11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectObject11(stack["coll"])
|
|
}
|
|
|
|
func (c *current) onSelectObject2(field, other_fields any) (any, error) {
|
|
return makeSelectObject(field, other_fields)
|
|
}
|
|
|
|
func (p *parser) callonSelectObject2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectObject2(stack["field"], stack["other_fields"])
|
|
}
|
|
|
|
func (c *current) onSelectObject20() (any, error) {
|
|
return parsers.SelectItem{
|
|
SelectItems: []parsers.SelectItem{},
|
|
Type: parsers.SelectItemTypeObject,
|
|
}, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectObject20() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectObject20()
|
|
}
|
|
|
|
func (c *current) onSelectObjectField6(key any) (any, error) {
|
|
return key, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectObjectField6() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectObjectField6(stack["key"])
|
|
}
|
|
|
|
func (c *current) onSelectObjectField1(name, selectItem any) (any, error) {
|
|
item := selectItem.(parsers.SelectItem)
|
|
item.Alias = name.(string)
|
|
return item, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectObjectField1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectObjectField1(stack["name"], stack["selectItem"])
|
|
}
|
|
|
|
func (c *current) onSelectProperty1(name, path any) (any, error) {
|
|
return makeSelectItem(name, path, parsers.SelectItemTypeField)
|
|
}
|
|
|
|
func (p *parser) callonSelectProperty1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectProperty1(stack["name"], stack["path"])
|
|
}
|
|
|
|
func (c *current) onSelectItemWithAlias1(selectItem, asClause any) (any, error) {
|
|
item := selectItem.(parsers.SelectItem)
|
|
if aliasValue, ok := asClause.(string); ok {
|
|
item.Alias = aliasValue
|
|
}
|
|
return item, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithAlias1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithAlias1(stack["selectItem"], stack["asClause"])
|
|
}
|
|
|
|
func (c *current) onSelectItem1(selectItem any) (any, error) {
|
|
var itemResult parsers.SelectItem
|
|
switch typedValue := selectItem.(type) {
|
|
case parsers.SelectItem:
|
|
itemResult = typedValue
|
|
case parsers.Constant:
|
|
itemResult = parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeConstant,
|
|
Value: typedValue,
|
|
}
|
|
case parsers.FunctionCall:
|
|
itemResult = parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeFunctionCall,
|
|
Value: typedValue,
|
|
}
|
|
}
|
|
|
|
return itemResult, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItem1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItem1(stack["selectItem"])
|
|
}
|
|
|
|
func (c *current) onAsClause1(alias any) (any, error) {
|
|
return alias, nil
|
|
}
|
|
|
|
func (p *parser) callonAsClause1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAsClause1(stack["alias"])
|
|
}
|
|
|
|
func (c *current) onDotFieldAccess1(id any) (any, error) {
|
|
return id, nil
|
|
}
|
|
|
|
func (p *parser) callonDotFieldAccess1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onDotFieldAccess1(stack["id"])
|
|
}
|
|
|
|
func (c *current) onArrayFieldAccess2(id any) (any, error) {
|
|
return id, nil
|
|
}
|
|
|
|
func (p *parser) callonArrayFieldAccess2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayFieldAccess2(stack["id"])
|
|
}
|
|
|
|
func (c *current) onArrayFieldAccess8(id any) (any, error) {
|
|
return strconv.Itoa(id.(int)), nil
|
|
}
|
|
|
|
func (p *parser) callonArrayFieldAccess8() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayFieldAccess8(stack["id"])
|
|
}
|
|
|
|
func (c *current) onArrayFieldAccess14(id any) (any, error) {
|
|
return id.(parsers.Constant).Value.(string), nil
|
|
}
|
|
|
|
func (p *parser) callonArrayFieldAccess14() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayFieldAccess14(stack["id"])
|
|
}
|
|
|
|
func (c *current) onIdentifier1() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonIdentifier1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIdentifier1()
|
|
}
|
|
|
|
func (c *current) onCondition1(expression any) (any, error) {
|
|
return expression, nil
|
|
}
|
|
|
|
func (p *parser) callonCondition1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onCondition1(stack["expression"])
|
|
}
|
|
|
|
func (c *current) onOrExpression7(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonOrExpression7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOrExpression7(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onOrExpression1(ex1, ex2 any) (any, error) {
|
|
return combineExpressions(ex1, ex2, parsers.LogicalExpressionTypeOr)
|
|
}
|
|
|
|
func (p *parser) callonOrExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOrExpression1(stack["ex1"], stack["ex2"])
|
|
}
|
|
|
|
func (c *current) onAndExpression7(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonAndExpression7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAndExpression7(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onAndExpression1(ex1, ex2 any) (any, error) {
|
|
return combineExpressions(ex1, ex2, parsers.LogicalExpressionTypeAnd)
|
|
}
|
|
|
|
func (p *parser) callonAndExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAndExpression1(stack["ex1"], stack["ex2"])
|
|
}
|
|
|
|
func (c *current) onComparisonExpression2(left, op, right any) (any, error) {
|
|
return parsers.ComparisonExpression{Left: left, Right: right, Operation: op.(string)}, nil
|
|
}
|
|
|
|
func (p *parser) callonComparisonExpression2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onComparisonExpression2(stack["left"], stack["op"], stack["right"])
|
|
}
|
|
|
|
func (c *current) onComparisonExpression12(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonComparisonExpression12() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onComparisonExpression12(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onAddSubExpression7(op, right any) (any, error) {
|
|
return []interface{}{op, right}, nil
|
|
}
|
|
|
|
func (p *parser) callonAddSubExpression7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAddSubExpression7(stack["op"], stack["right"])
|
|
}
|
|
|
|
func (c *current) onAddSubExpression1(left, operations any) (any, error) {
|
|
return makeMathExpression(left, operations)
|
|
}
|
|
|
|
func (p *parser) callonAddSubExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAddSubExpression1(stack["left"], stack["operations"])
|
|
}
|
|
|
|
func (c *current) onMulDivExpression7(op, right any) (any, error) {
|
|
return []interface{}{op, right}, nil
|
|
}
|
|
|
|
func (p *parser) callonMulDivExpression7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMulDivExpression7(stack["op"], stack["right"])
|
|
}
|
|
|
|
func (c *current) onMulDivExpression1(left, operations any) (any, error) {
|
|
return makeMathExpression(left, operations)
|
|
}
|
|
|
|
func (p *parser) callonMulDivExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMulDivExpression1(stack["left"], stack["operations"])
|
|
}
|
|
|
|
func (c *current) onSelectItemWithParentheses2(inv, ex any) (any, error) {
|
|
if inv != nil {
|
|
if ex1, ok := ex.(parsers.SelectItem); ok {
|
|
ex1.Invert = true
|
|
return ex1, nil
|
|
}
|
|
}
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithParentheses2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithParentheses2(stack["inv"], stack["ex"])
|
|
}
|
|
|
|
func (c *current) onSelectItemWithParentheses15(inv, ex any) (any, error) {
|
|
if inv != nil {
|
|
ex1 := ex.(parsers.SelectItem)
|
|
ex1.Invert = true
|
|
return ex1, nil
|
|
}
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithParentheses15() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithParentheses15(stack["inv"], stack["ex"])
|
|
}
|
|
|
|
func (c *current) onSelectItemWithParentheses24(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithParentheses24() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithParentheses24(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onOrderByClause9(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonOrderByClause9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOrderByClause9(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onOrderByClause1(ex1, others any) (any, error) {
|
|
return makeOrderByClause(ex1, others)
|
|
}
|
|
|
|
func (p *parser) callonOrderByClause1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOrderByClause1(stack["ex1"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onOrderExpression1(field, order any) (any, error) {
|
|
return makeOrderExpression(field, order)
|
|
}
|
|
|
|
func (p *parser) callonOrderExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOrderExpression1(stack["field"], stack["order"])
|
|
}
|
|
|
|
func (c *current) onOrderDirection1() (any, error) {
|
|
if strings.EqualFold(string(c.text), "DESC") {
|
|
return parsers.OrderDirectionDesc, nil
|
|
}
|
|
|
|
return parsers.OrderDirectionAsc, nil
|
|
}
|
|
|
|
func (p *parser) callonOrderDirection1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onOrderDirection1()
|
|
}
|
|
|
|
func (c *current) onComparisonOperator1() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonComparisonOperator1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onComparisonOperator1()
|
|
}
|
|
|
|
func (c *current) onAddOrSubtractOperation1() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonAddOrSubtractOperation1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAddOrSubtractOperation1()
|
|
}
|
|
|
|
func (c *current) onMultiplyOrDivideOperation1() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonMultiplyOrDivideOperation1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMultiplyOrDivideOperation1()
|
|
}
|
|
|
|
func (c *current) onParameterConstant1() (any, error) {
|
|
return parsers.Constant{Type: parsers.ConstantTypeParameterConstant, Value: string(c.text)}, nil
|
|
}
|
|
|
|
func (p *parser) callonParameterConstant1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onParameterConstant1()
|
|
}
|
|
|
|
func (c *current) onNullConstant1() (any, error) {
|
|
return parsers.Constant{Value: nil}, nil
|
|
}
|
|
|
|
func (p *parser) callonNullConstant1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onNullConstant1()
|
|
}
|
|
|
|
func (c *current) onIntegerLiteral1(number any) (any, error) {
|
|
return parsers.Constant{Type: parsers.ConstantTypeInteger, Value: number.(int)}, nil
|
|
}
|
|
|
|
func (p *parser) callonIntegerLiteral1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIntegerLiteral1(stack["number"])
|
|
}
|
|
|
|
func (c *current) onStringLiteral2(chars any) (any, error) {
|
|
return parsers.Constant{Type: parsers.ConstantTypeString, Value: joinStrings(chars.([]interface{}))}, nil
|
|
}
|
|
|
|
func (p *parser) callonStringLiteral2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringLiteral2(stack["chars"])
|
|
}
|
|
|
|
func (c *current) onStringLiteral9(chars any) (any, error) {
|
|
return parsers.Constant{Type: parsers.ConstantTypeString, Value: joinStrings(chars.([]interface{}))}, nil
|
|
}
|
|
|
|
func (p *parser) callonStringLiteral9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringLiteral9(stack["chars"])
|
|
}
|
|
|
|
func (c *current) onFloatLiteral1() (any, error) {
|
|
floatValue, _ := strconv.ParseFloat(string(c.text), 64)
|
|
return parsers.Constant{Type: parsers.ConstantTypeFloat, Value: floatValue}, nil
|
|
}
|
|
|
|
func (p *parser) callonFloatLiteral1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onFloatLiteral1()
|
|
}
|
|
|
|
func (c *current) onBooleanLiteral1() (any, error) {
|
|
boolValue, _ := strconv.ParseBool(string(c.text))
|
|
return parsers.Constant{Type: parsers.ConstantTypeBoolean, Value: boolValue}, nil
|
|
}
|
|
|
|
func (p *parser) callonBooleanLiteral1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onBooleanLiteral1()
|
|
}
|
|
|
|
func (c *current) onUpperExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallUpper, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonUpperExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onUpperExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onLowerExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallLower, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonLowerExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onLowerExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onStringEqualsExpression17(boolean any) (any, error) {
|
|
return boolean, nil
|
|
}
|
|
|
|
func (p *parser) callonStringEqualsExpression17() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringEqualsExpression17(stack["boolean"])
|
|
}
|
|
|
|
func (c *current) onStringEqualsExpression1(ex1, ex2, ignoreCase any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallStringEquals, []interface{}{ex1, ex2, ignoreCase})
|
|
}
|
|
|
|
func (p *parser) callonStringEqualsExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringEqualsExpression1(stack["ex1"], stack["ex2"], stack["ignoreCase"])
|
|
}
|
|
|
|
func (c *current) onToStringExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallToString, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonToStringExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onToStringExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onConcatExpression11(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonConcatExpression11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onConcatExpression11(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onConcatExpression1(ex1, others any) (any, error) {
|
|
arguments := append([]interface{}{ex1}, others.([]interface{})...)
|
|
return createFunctionCall(parsers.FunctionCallConcat, arguments)
|
|
}
|
|
|
|
func (p *parser) callonConcatExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onConcatExpression1(stack["ex1"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onLeftExpression1(ex, length any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallLeft, []interface{}{ex, length})
|
|
}
|
|
|
|
func (p *parser) callonLeftExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onLeftExpression1(stack["ex"], stack["length"])
|
|
}
|
|
|
|
func (c *current) onLengthExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallLength, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonLengthExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onLengthExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onLTrimExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallLTrim, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonLTrimExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onLTrimExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onReplaceExpression1(ex1, ex2, ex3 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallReplace, []interface{}{ex1, ex2, ex3})
|
|
}
|
|
|
|
func (p *parser) callonReplaceExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onReplaceExpression1(stack["ex1"], stack["ex2"], stack["ex3"])
|
|
}
|
|
|
|
func (c *current) onReplicateExpression1(ex1, ex2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallReplicate, []interface{}{ex1, ex2})
|
|
}
|
|
|
|
func (p *parser) callonReplicateExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onReplicateExpression1(stack["ex1"], stack["ex2"])
|
|
}
|
|
|
|
func (c *current) onReverseExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallReverse, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonReverseExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onReverseExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onRightExpression1(ex, length any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallRight, []interface{}{ex, length})
|
|
}
|
|
|
|
func (p *parser) callonRightExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onRightExpression1(stack["ex"], stack["length"])
|
|
}
|
|
|
|
func (c *current) onRTrimExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallRTrim, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonRTrimExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onRTrimExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onSubstringExpression1(ex, startPos, length any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallSubstring, []interface{}{ex, startPos, length})
|
|
}
|
|
|
|
func (p *parser) callonSubstringExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSubstringExpression1(stack["ex"], stack["startPos"], stack["length"])
|
|
}
|
|
|
|
func (c *current) onTrimExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallTrim, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonTrimExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onTrimExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onThreeArgumentStringFunctionExpression18(boolean any) (any, error) {
|
|
return boolean, nil
|
|
}
|
|
|
|
func (p *parser) callonThreeArgumentStringFunctionExpression18() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onThreeArgumentStringFunctionExpression18(stack["boolean"])
|
|
}
|
|
|
|
func (c *current) onThreeArgumentStringFunctionExpression1(function, ex1, ex2, ignoreCase any) (any, error) {
|
|
var functionType parsers.FunctionCallType
|
|
|
|
lowerFunction := strings.ToUpper(function.(string))
|
|
switch lowerFunction {
|
|
case "CONTAINS":
|
|
functionType = parsers.FunctionCallContains
|
|
case "ENDSWITH":
|
|
functionType = parsers.FunctionCallEndsWith
|
|
case "STARTSWITH":
|
|
functionType = parsers.FunctionCallStartsWith
|
|
case "REGEXMATCH":
|
|
functionType = parsers.FunctionCallRegexMatch
|
|
case "INDEX_OF":
|
|
functionType = parsers.FunctionCallIndexOf
|
|
}
|
|
|
|
return createFunctionCall(functionType, []interface{}{ex1, ex2, ignoreCase})
|
|
}
|
|
|
|
func (p *parser) callonThreeArgumentStringFunctionExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onThreeArgumentStringFunctionExpression1(stack["function"], stack["ex1"], stack["ex2"], stack["ignoreCase"])
|
|
}
|
|
|
|
func (c *current) onThreeArgumentStringFunction1() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonThreeArgumentStringFunction1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onThreeArgumentStringFunction1()
|
|
}
|
|
|
|
func (c *current) onIsDefined1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsDefined, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsDefined1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsDefined1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsArray1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsArray, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsArray1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsArray1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsBool1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsBool, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsBool1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsBool1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsFiniteNumber1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsFiniteNumber, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsFiniteNumber1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsFiniteNumber1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsInteger1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsInteger, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsInteger1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsInteger1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsNull1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsNull, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsNull1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsNull1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsNumber1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsNumber, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsNumber1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsNumber1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsObject1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsObject, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsObject1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsObject1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsPrimitive1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsPrimitive, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsPrimitive1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsPrimitive1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onIsString1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIsString, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonIsString1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIsString1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onArrayConcatExpression11(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonArrayConcatExpression11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayConcatExpression11(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onArrayConcatExpression1(arrays, others any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallArrayConcat, append([]interface{}{arrays}, others.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonArrayConcatExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayConcatExpression1(stack["arrays"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onArrayContainsExpression16(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonArrayContainsExpression16() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayContainsExpression16(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onArrayContainsExpression1(array, item, partialMatch any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallArrayContains, []interface{}{array, item, partialMatch})
|
|
}
|
|
|
|
func (p *parser) callonArrayContainsExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayContainsExpression1(stack["array"], stack["item"], stack["partialMatch"])
|
|
}
|
|
|
|
func (c *current) onArrayContainsAnyExpression11(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonArrayContainsAnyExpression11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayContainsAnyExpression11(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onArrayContainsAnyExpression1(array, items any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallArrayContainsAny, append([]interface{}{array}, items.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonArrayContainsAnyExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayContainsAnyExpression1(stack["array"], stack["items"])
|
|
}
|
|
|
|
func (c *current) onArrayContainsAllExpression11(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonArrayContainsAllExpression11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayContainsAllExpression11(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onArrayContainsAllExpression1(array, items any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallArrayContainsAll, append([]interface{}{array}, items.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonArrayContainsAllExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayContainsAllExpression1(stack["array"], stack["items"])
|
|
}
|
|
|
|
func (c *current) onArrayLengthExpression1(array any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallArrayLength, []interface{}{array})
|
|
}
|
|
|
|
func (p *parser) callonArrayLengthExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArrayLengthExpression1(stack["array"])
|
|
}
|
|
|
|
func (c *current) onArraySliceExpression16(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonArraySliceExpression16() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArraySliceExpression16(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onArraySliceExpression1(array, start, length any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallArraySlice, []interface{}{array, start, length})
|
|
}
|
|
|
|
func (p *parser) callonArraySliceExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onArraySliceExpression1(stack["array"], stack["start"], stack["length"])
|
|
}
|
|
|
|
func (c *current) onSetIntersectExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallSetIntersect, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonSetIntersectExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSetIntersectExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onSetUnionExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallSetUnion, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonSetUnionExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSetUnionExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onIifExpression1(condition, trueValue, falseValue any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIif, []interface{}{condition, trueValue, falseValue})
|
|
}
|
|
|
|
func (p *parser) callonIifExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onIifExpression1(stack["condition"], stack["trueValue"], stack["falseValue"])
|
|
}
|
|
|
|
func (c *current) onMathAbsExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathAbs, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathAbsExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathAbsExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathAcosExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathAcos, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathAcosExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathAcosExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathAsinExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathAsin, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathAsinExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathAsinExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathAtanExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathAtan, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathAtanExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathAtanExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathCeilingExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathCeiling, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathCeilingExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathCeilingExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathCosExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathCos, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathCosExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathCosExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathCotExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathCot, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathCotExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathCotExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathDegreesExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathDegrees, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathDegreesExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathDegreesExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathExpExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathExp, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathExpExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathExpExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathFloorExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathFloor, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathFloorExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathFloorExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathIntBitNotExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntBitNot, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathIntBitNotExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntBitNotExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathLog10Expression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathLog10, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathLog10Expression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathLog10Expression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathRadiansExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathRadians, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathRadiansExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathRadiansExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathRoundExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathRound, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathRoundExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathRoundExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathSignExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathSign, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathSignExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathSignExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathSinExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathSin, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathSinExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathSinExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathSqrtExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathSqrt, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathSqrtExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathSqrtExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathSquareExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathSquare, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathSquareExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathSquareExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathTanExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathTan, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathTanExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathTanExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathTruncExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathTrunc, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMathTruncExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathTruncExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathAtn2Expression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathAtn2, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathAtn2Expression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathAtn2Expression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntAddExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntAdd, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntAddExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntAddExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntBitAndExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntBitAnd, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntBitAndExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntBitAndExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntBitLeftShiftExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntBitLeftShift, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntBitLeftShiftExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntBitLeftShiftExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntBitOrExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntBitOr, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntBitOrExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntBitOrExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntBitRightShiftExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntBitRightShift, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntBitRightShiftExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntBitRightShiftExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntBitXorExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntBitXor, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntBitXorExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntBitXorExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntDivExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntDiv, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntDivExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntDivExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntModExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntMod, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntModExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntModExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntMulExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntMul, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntMulExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntMulExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathIntSubExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathIntSub, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathIntSubExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathIntSubExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathPowerExpression1(set1, set2 any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathPower, []interface{}{set1, set2})
|
|
}
|
|
|
|
func (p *parser) callonMathPowerExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathPowerExpression1(stack["set1"], stack["set2"])
|
|
}
|
|
|
|
func (c *current) onMathLogExpression11(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonMathLogExpression11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathLogExpression11(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathLogExpression1(ex1, others any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathLog, append([]interface{}{ex1}, others.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonMathLogExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathLogExpression1(stack["ex1"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onMathNumberBinExpression11(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonMathNumberBinExpression11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathNumberBinExpression11(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMathNumberBinExpression1(ex1, others any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathNumberBin, append([]interface{}{ex1}, others.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonMathNumberBinExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathNumberBinExpression1(stack["ex1"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onMathPiExpression1() (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathPi, []interface{}{})
|
|
}
|
|
|
|
func (p *parser) callonMathPiExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathPiExpression1()
|
|
}
|
|
|
|
func (c *current) onMathRandExpression1() (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallMathRand, []interface{}{})
|
|
}
|
|
|
|
func (p *parser) callonMathRandExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMathRandExpression1()
|
|
}
|
|
|
|
func (c *current) onInFunction20(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonInFunction20() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction20(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onInFunction2(ex1, notIn, ex2, others any) (any, error) {
|
|
arguments := append([]interface{}{ex1, ex2}, others.([]interface{})...)
|
|
functionCall, _ := createFunctionCall(parsers.FunctionCallIn, arguments)
|
|
|
|
if notIn != nil {
|
|
return parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeFunctionCall,
|
|
Value: functionCall,
|
|
Invert: true,
|
|
}, nil
|
|
}
|
|
|
|
return functionCall, nil
|
|
}
|
|
|
|
func (p *parser) callonInFunction2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction2(stack["ex1"], stack["notIn"], stack["ex2"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onInFunction49(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonInFunction49() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction49(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onInFunction29(ex1, notIn, ex2, others any) (any, error) {
|
|
arguments := append([]interface{}{ex1, ex2}, others.([]interface{})...)
|
|
functionCall, _ := createFunctionCall(parsers.FunctionCallIn, arguments)
|
|
|
|
if notIn != nil {
|
|
return parsers.SelectItem{
|
|
Type: parsers.SelectItemTypeFunctionCall,
|
|
Value: functionCall,
|
|
Invert: true,
|
|
}, nil
|
|
}
|
|
|
|
return functionCall, nil
|
|
}
|
|
|
|
func (p *parser) callonInFunction29() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction29(stack["ex1"], stack["notIn"], stack["ex2"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onAvgAggregateExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallAggregateAvg, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonAvgAggregateExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onAvgAggregateExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onCountAggregateExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallAggregateCount, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonCountAggregateExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onCountAggregateExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMaxAggregateExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallAggregateMax, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMaxAggregateExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMaxAggregateExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onMinAggregateExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallAggregateMin, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonMinAggregateExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onMinAggregateExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onSumAggregateExpression1(ex any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallAggregateSum, []interface{}{ex})
|
|
}
|
|
|
|
func (p *parser) callonSumAggregateExpression1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSumAggregateExpression1(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onInteger1() (any, error) {
|
|
return strconv.Atoi(string(c.text))
|
|
}
|
|
|
|
func (p *parser) callonInteger1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInteger1()
|
|
}
|
|
|
|
func (c *current) onStringCharacter2() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonStringCharacter2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringCharacter2()
|
|
}
|
|
|
|
func (c *current) onStringCharacter9(seq any) (any, error) {
|
|
return seq, nil
|
|
}
|
|
|
|
func (p *parser) callonStringCharacter9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringCharacter9(stack["seq"])
|
|
}
|
|
|
|
func (c *current) onSingleQuotedStringCharacter2() (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonSingleQuotedStringCharacter2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSingleQuotedStringCharacter2()
|
|
}
|
|
|
|
func (c *current) onSingleQuotedStringCharacter9(seq any) (any, error) {
|
|
return seq, nil
|
|
}
|
|
|
|
func (p *parser) callonSingleQuotedStringCharacter9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSingleQuotedStringCharacter9(stack["seq"])
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter2() (any, error) {
|
|
return "'", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter2()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter4() (any, error) {
|
|
return "\"", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter4() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter4()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter6() (any, error) {
|
|
return "\\", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter6() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter6()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter8() (any, error) {
|
|
return "\b", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter8() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter8()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter10() (any, error) {
|
|
return "\f", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter10() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter10()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter12() (any, error) {
|
|
return "\n", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter12() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter12()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter14() (any, error) {
|
|
return "\r", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter14() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter14()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter16() (any, error) {
|
|
return "\t", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter16() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter16()
|
|
}
|
|
|
|
func (c *current) onnon_escape_character1(char any) (any, error) {
|
|
return string(c.text), nil
|
|
}
|
|
|
|
func (p *parser) callonnon_escape_character1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onnon_escape_character1(stack["char"])
|
|
}
|
|
|
|
var (
|
|
// errNoRule is returned when the grammar to parse has no rule.
|
|
errNoRule = errors.New("grammar has no rule")
|
|
|
|
// errInvalidEntrypoint is returned when the specified entrypoint rule
|
|
// does not exit.
|
|
errInvalidEntrypoint = errors.New("invalid entrypoint")
|
|
|
|
// errInvalidEncoding is returned when the source is not properly
|
|
// utf8-encoded.
|
|
errInvalidEncoding = errors.New("invalid encoding")
|
|
|
|
// errMaxExprCnt is used to signal that the maximum number of
|
|
// expressions have been parsed.
|
|
errMaxExprCnt = errors.New("max number of expressions parsed")
|
|
)
|
|
|
|
// Option is a function that can set an option on the parser. It returns
|
|
// the previous setting as an Option.
|
|
type Option func(*parser) Option
|
|
|
|
// MaxExpressions creates an Option to stop parsing after the provided
|
|
// number of expressions have been parsed, if the value is 0 then the parser will
|
|
// parse for as many steps as needed (possibly an infinite number).
|
|
//
|
|
// The default for maxExprCnt is 0.
|
|
func MaxExpressions(maxExprCnt uint64) Option {
|
|
return func(p *parser) Option {
|
|
oldMaxExprCnt := p.maxExprCnt
|
|
p.maxExprCnt = maxExprCnt
|
|
return MaxExpressions(oldMaxExprCnt)
|
|
}
|
|
}
|
|
|
|
// Entrypoint creates an Option to set the rule name to use as entrypoint.
|
|
// The rule name must have been specified in the -alternate-entrypoints
|
|
// if generating the parser with the -optimize-grammar flag, otherwise
|
|
// it may have been optimized out. Passing an empty string sets the
|
|
// entrypoint to the first rule in the grammar.
|
|
//
|
|
// The default is to start parsing at the first rule in the grammar.
|
|
func Entrypoint(ruleName string) Option {
|
|
return func(p *parser) Option {
|
|
oldEntrypoint := p.entrypoint
|
|
p.entrypoint = ruleName
|
|
if ruleName == "" {
|
|
p.entrypoint = g.rules[0].name
|
|
}
|
|
return Entrypoint(oldEntrypoint)
|
|
}
|
|
}
|
|
|
|
// Statistics adds a user provided Stats struct to the parser to allow
|
|
// the user to process the results after the parsing has finished.
|
|
// Also the key for the "no match" counter is set.
|
|
//
|
|
// Example usage:
|
|
//
|
|
// input := "input"
|
|
// stats := Stats{}
|
|
// _, err := Parse("input-file", []byte(input), Statistics(&stats, "no match"))
|
|
// if err != nil {
|
|
// log.Panicln(err)
|
|
// }
|
|
// b, err := json.MarshalIndent(stats.ChoiceAltCnt, "", " ")
|
|
// if err != nil {
|
|
// log.Panicln(err)
|
|
// }
|
|
// fmt.Println(string(b))
|
|
func Statistics(stats *Stats, choiceNoMatch string) Option {
|
|
return func(p *parser) Option {
|
|
oldStats := p.Stats
|
|
p.Stats = stats
|
|
oldChoiceNoMatch := p.choiceNoMatch
|
|
p.choiceNoMatch = choiceNoMatch
|
|
if p.Stats.ChoiceAltCnt == nil {
|
|
p.Stats.ChoiceAltCnt = make(map[string]map[string]int)
|
|
}
|
|
return Statistics(oldStats, oldChoiceNoMatch)
|
|
}
|
|
}
|
|
|
|
// Debug creates an Option to set the debug flag to b. When set to true,
|
|
// debugging information is printed to stdout while parsing.
|
|
//
|
|
// The default is false.
|
|
func Debug(b bool) Option {
|
|
return func(p *parser) Option {
|
|
old := p.debug
|
|
p.debug = b
|
|
return Debug(old)
|
|
}
|
|
}
|
|
|
|
// Memoize creates an Option to set the memoize flag to b. When set to true,
|
|
// the parser will cache all results so each expression is evaluated only
|
|
// once. This guarantees linear parsing time even for pathological cases,
|
|
// at the expense of more memory and slower times for typical cases.
|
|
//
|
|
// The default is false.
|
|
func Memoize(b bool) Option {
|
|
return func(p *parser) Option {
|
|
old := p.memoize
|
|
p.memoize = b
|
|
return Memoize(old)
|
|
}
|
|
}
|
|
|
|
// AllowInvalidUTF8 creates an Option to allow invalid UTF-8 bytes.
|
|
// Every invalid UTF-8 byte is treated as a utf8.RuneError (U+FFFD)
|
|
// by character class matchers and is matched by the any matcher.
|
|
// The returned matched value, c.text and c.offset are NOT affected.
|
|
//
|
|
// The default is false.
|
|
func AllowInvalidUTF8(b bool) Option {
|
|
return func(p *parser) Option {
|
|
old := p.allowInvalidUTF8
|
|
p.allowInvalidUTF8 = b
|
|
return AllowInvalidUTF8(old)
|
|
}
|
|
}
|
|
|
|
// Recover creates an Option to set the recover flag to b. When set to
|
|
// true, this causes the parser to recover from panics and convert it
|
|
// to an error. Setting it to false can be useful while debugging to
|
|
// access the full stack trace.
|
|
//
|
|
// The default is true.
|
|
func Recover(b bool) Option {
|
|
return func(p *parser) Option {
|
|
old := p.recover
|
|
p.recover = b
|
|
return Recover(old)
|
|
}
|
|
}
|
|
|
|
// GlobalStore creates an Option to set a key to a certain value in
|
|
// the globalStore.
|
|
func GlobalStore(key string, value any) Option {
|
|
return func(p *parser) Option {
|
|
old := p.cur.globalStore[key]
|
|
p.cur.globalStore[key] = value
|
|
return GlobalStore(key, old)
|
|
}
|
|
}
|
|
|
|
// InitState creates an Option to set a key to a certain value in
|
|
// the global "state" store.
|
|
func InitState(key string, value any) Option {
|
|
return func(p *parser) Option {
|
|
old := p.cur.state[key]
|
|
p.cur.state[key] = value
|
|
return InitState(key, old)
|
|
}
|
|
}
|
|
|
|
// ParseFile parses the file identified by filename.
|
|
func ParseFile(filename string, opts ...Option) (i any, err error) {
|
|
f, err := os.Open(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer func() {
|
|
if closeErr := f.Close(); closeErr != nil {
|
|
err = closeErr
|
|
}
|
|
}()
|
|
return ParseReader(filename, f, opts...)
|
|
}
|
|
|
|
// ParseReader parses the data from r using filename as information in the
|
|
// error messages.
|
|
func ParseReader(filename string, r io.Reader, opts ...Option) (any, error) {
|
|
b, err := io.ReadAll(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return Parse(filename, b, opts...)
|
|
}
|
|
|
|
// Parse parses the data from b using filename as information in the
|
|
// error messages.
|
|
func Parse(filename string, b []byte, opts ...Option) (any, error) {
|
|
return newParser(filename, b, opts...).parse(g)
|
|
}
|
|
|
|
// position records a position in the text.
|
|
type position struct {
|
|
line, col, offset int
|
|
}
|
|
|
|
func (p position) String() string {
|
|
return strconv.Itoa(p.line) + ":" + strconv.Itoa(p.col) + " [" + strconv.Itoa(p.offset) + "]"
|
|
}
|
|
|
|
// savepoint stores all state required to go back to this point in the
|
|
// parser.
|
|
type savepoint struct {
|
|
position
|
|
rn rune
|
|
w int
|
|
}
|
|
|
|
type current struct {
|
|
pos position // start position of the match
|
|
text []byte // raw text of the match
|
|
|
|
// state is a store for arbitrary key,value pairs that the user wants to be
|
|
// tied to the backtracking of the parser.
|
|
// This is always rolled back if a parsing rule fails.
|
|
state storeDict
|
|
|
|
// globalStore is a general store for the user to store arbitrary key-value
|
|
// pairs that they need to manage and that they do not want tied to the
|
|
// backtracking of the parser. This is only modified by the user and never
|
|
// rolled back by the parser. It is always up to the user to keep this in a
|
|
// consistent state.
|
|
globalStore storeDict
|
|
}
|
|
|
|
type storeDict map[string]any
|
|
|
|
// the AST types...
|
|
|
|
type grammar struct {
|
|
pos position
|
|
rules []*rule
|
|
}
|
|
|
|
type rule struct {
|
|
pos position
|
|
name string
|
|
displayName string
|
|
expr any
|
|
}
|
|
|
|
type choiceExpr struct {
|
|
pos position
|
|
alternatives []any
|
|
}
|
|
|
|
type actionExpr struct {
|
|
pos position
|
|
expr any
|
|
run func(*parser) (any, error)
|
|
}
|
|
|
|
type recoveryExpr struct {
|
|
pos position
|
|
expr any
|
|
recoverExpr any
|
|
failureLabel []string
|
|
}
|
|
|
|
type seqExpr struct {
|
|
pos position
|
|
exprs []any
|
|
}
|
|
|
|
type throwExpr struct {
|
|
pos position
|
|
label string
|
|
}
|
|
|
|
type labeledExpr struct {
|
|
pos position
|
|
label string
|
|
expr any
|
|
}
|
|
|
|
type expr struct {
|
|
pos position
|
|
expr any
|
|
}
|
|
|
|
type (
|
|
andExpr expr
|
|
notExpr expr
|
|
zeroOrOneExpr expr
|
|
zeroOrMoreExpr expr
|
|
oneOrMoreExpr expr
|
|
)
|
|
|
|
type ruleRefExpr struct {
|
|
pos position
|
|
name string
|
|
}
|
|
|
|
type stateCodeExpr struct {
|
|
pos position
|
|
run func(*parser) error
|
|
}
|
|
|
|
type andCodeExpr struct {
|
|
pos position
|
|
run func(*parser) (bool, error)
|
|
}
|
|
|
|
type notCodeExpr struct {
|
|
pos position
|
|
run func(*parser) (bool, error)
|
|
}
|
|
|
|
type litMatcher struct {
|
|
pos position
|
|
val string
|
|
ignoreCase bool
|
|
want string
|
|
}
|
|
|
|
type charClassMatcher struct {
|
|
pos position
|
|
val string
|
|
basicLatinChars [128]bool
|
|
chars []rune
|
|
ranges []rune
|
|
classes []*unicode.RangeTable
|
|
ignoreCase bool
|
|
inverted bool
|
|
}
|
|
|
|
type anyMatcher position
|
|
|
|
// errList cumulates the errors found by the parser.
|
|
type errList []error
|
|
|
|
func (e *errList) add(err error) {
|
|
*e = append(*e, err)
|
|
}
|
|
|
|
func (e errList) err() error {
|
|
if len(e) == 0 {
|
|
return nil
|
|
}
|
|
e.dedupe()
|
|
return e
|
|
}
|
|
|
|
func (e *errList) dedupe() {
|
|
var cleaned []error
|
|
set := make(map[string]bool)
|
|
for _, err := range *e {
|
|
if msg := err.Error(); !set[msg] {
|
|
set[msg] = true
|
|
cleaned = append(cleaned, err)
|
|
}
|
|
}
|
|
*e = cleaned
|
|
}
|
|
|
|
func (e errList) Error() string {
|
|
switch len(e) {
|
|
case 0:
|
|
return ""
|
|
case 1:
|
|
return e[0].Error()
|
|
default:
|
|
var buf bytes.Buffer
|
|
|
|
for i, err := range e {
|
|
if i > 0 {
|
|
buf.WriteRune('\n')
|
|
}
|
|
buf.WriteString(err.Error())
|
|
}
|
|
return buf.String()
|
|
}
|
|
}
|
|
|
|
// parserError wraps an error with a prefix indicating the rule in which
|
|
// the error occurred. The original error is stored in the Inner field.
|
|
type parserError struct {
|
|
Inner error
|
|
pos position
|
|
prefix string
|
|
expected []string
|
|
}
|
|
|
|
// Error returns the error message.
|
|
func (p *parserError) Error() string {
|
|
return p.prefix + ": " + p.Inner.Error()
|
|
}
|
|
|
|
// newParser creates a parser with the specified input source and options.
|
|
func newParser(filename string, b []byte, opts ...Option) *parser {
|
|
stats := Stats{
|
|
ChoiceAltCnt: make(map[string]map[string]int),
|
|
}
|
|
|
|
p := &parser{
|
|
filename: filename,
|
|
errs: new(errList),
|
|
data: b,
|
|
pt: savepoint{position: position{line: 1}},
|
|
recover: true,
|
|
cur: current{
|
|
state: make(storeDict),
|
|
globalStore: make(storeDict),
|
|
},
|
|
maxFailPos: position{col: 1, line: 1},
|
|
maxFailExpected: make([]string, 0, 20),
|
|
Stats: &stats,
|
|
// start rule is rule [0] unless an alternate entrypoint is specified
|
|
entrypoint: g.rules[0].name,
|
|
}
|
|
p.setOptions(opts)
|
|
|
|
if p.maxExprCnt == 0 {
|
|
p.maxExprCnt = math.MaxUint64
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
// setOptions applies the options to the parser.
|
|
func (p *parser) setOptions(opts []Option) {
|
|
for _, opt := range opts {
|
|
opt(p)
|
|
}
|
|
}
|
|
|
|
type resultTuple struct {
|
|
v any
|
|
b bool
|
|
end savepoint
|
|
}
|
|
|
|
const choiceNoMatch = -1
|
|
|
|
// Stats stores some statistics, gathered during parsing
|
|
type Stats struct {
|
|
// ExprCnt counts the number of expressions processed during parsing
|
|
// This value is compared to the maximum number of expressions allowed
|
|
// (set by the MaxExpressions option).
|
|
ExprCnt uint64
|
|
|
|
// ChoiceAltCnt is used to count for each ordered choice expression,
|
|
// which alternative is used how may times.
|
|
// These numbers allow to optimize the order of the ordered choice expression
|
|
// to increase the performance of the parser
|
|
//
|
|
// The outer key of ChoiceAltCnt is composed of the name of the rule as well
|
|
// as the line and the column of the ordered choice.
|
|
// The inner key of ChoiceAltCnt is the number (one-based) of the matching alternative.
|
|
// For each alternative the number of matches are counted. If an ordered choice does not
|
|
// match, a special counter is incremented. The name of this counter is set with
|
|
// the parser option Statistics.
|
|
// For an alternative to be included in ChoiceAltCnt, it has to match at least once.
|
|
ChoiceAltCnt map[string]map[string]int
|
|
}
|
|
|
|
type parser struct {
|
|
filename string
|
|
pt savepoint
|
|
cur current
|
|
|
|
data []byte
|
|
errs *errList
|
|
|
|
depth int
|
|
recover bool
|
|
debug bool
|
|
|
|
memoize bool
|
|
// memoization table for the packrat algorithm:
|
|
// map[offset in source] map[expression or rule] {value, match}
|
|
memo map[int]map[any]resultTuple
|
|
|
|
// rules table, maps the rule identifier to the rule node
|
|
rules map[string]*rule
|
|
// variables stack, map of label to value
|
|
vstack []map[string]any
|
|
// rule stack, allows identification of the current rule in errors
|
|
rstack []*rule
|
|
|
|
// parse fail
|
|
maxFailPos position
|
|
maxFailExpected []string
|
|
maxFailInvertExpected bool
|
|
|
|
// max number of expressions to be parsed
|
|
maxExprCnt uint64
|
|
// entrypoint for the parser
|
|
entrypoint string
|
|
|
|
allowInvalidUTF8 bool
|
|
|
|
*Stats
|
|
|
|
choiceNoMatch string
|
|
// recovery expression stack, keeps track of the currently available recovery expression, these are traversed in reverse
|
|
recoveryStack []map[string]any
|
|
}
|
|
|
|
// push a variable set on the vstack.
|
|
func (p *parser) pushV() {
|
|
if cap(p.vstack) == len(p.vstack) {
|
|
// create new empty slot in the stack
|
|
p.vstack = append(p.vstack, nil)
|
|
} else {
|
|
// slice to 1 more
|
|
p.vstack = p.vstack[:len(p.vstack)+1]
|
|
}
|
|
|
|
// get the last args set
|
|
m := p.vstack[len(p.vstack)-1]
|
|
if m != nil && len(m) == 0 {
|
|
// empty map, all good
|
|
return
|
|
}
|
|
|
|
m = make(map[string]any)
|
|
p.vstack[len(p.vstack)-1] = m
|
|
}
|
|
|
|
// pop a variable set from the vstack.
|
|
func (p *parser) popV() {
|
|
// if the map is not empty, clear it
|
|
m := p.vstack[len(p.vstack)-1]
|
|
if len(m) > 0 {
|
|
// GC that map
|
|
p.vstack[len(p.vstack)-1] = nil
|
|
}
|
|
p.vstack = p.vstack[:len(p.vstack)-1]
|
|
}
|
|
|
|
// push a recovery expression with its labels to the recoveryStack
|
|
func (p *parser) pushRecovery(labels []string, expr any) {
|
|
if cap(p.recoveryStack) == len(p.recoveryStack) {
|
|
// create new empty slot in the stack
|
|
p.recoveryStack = append(p.recoveryStack, nil)
|
|
} else {
|
|
// slice to 1 more
|
|
p.recoveryStack = p.recoveryStack[:len(p.recoveryStack)+1]
|
|
}
|
|
|
|
m := make(map[string]any, len(labels))
|
|
for _, fl := range labels {
|
|
m[fl] = expr
|
|
}
|
|
p.recoveryStack[len(p.recoveryStack)-1] = m
|
|
}
|
|
|
|
// pop a recovery expression from the recoveryStack
|
|
func (p *parser) popRecovery() {
|
|
// GC that map
|
|
p.recoveryStack[len(p.recoveryStack)-1] = nil
|
|
|
|
p.recoveryStack = p.recoveryStack[:len(p.recoveryStack)-1]
|
|
}
|
|
|
|
func (p *parser) print(prefix, s string) string {
|
|
if !p.debug {
|
|
return s
|
|
}
|
|
|
|
fmt.Printf("%s %d:%d:%d: %s [%#U]\n",
|
|
prefix, p.pt.line, p.pt.col, p.pt.offset, s, p.pt.rn)
|
|
return s
|
|
}
|
|
|
|
func (p *parser) printIndent(mark string, s string) string {
|
|
return p.print(strings.Repeat(" ", p.depth)+mark, s)
|
|
}
|
|
|
|
func (p *parser) in(s string) string {
|
|
res := p.printIndent(">", s)
|
|
p.depth++
|
|
return res
|
|
}
|
|
|
|
func (p *parser) out(s string) string {
|
|
p.depth--
|
|
return p.printIndent("<", s)
|
|
}
|
|
|
|
func (p *parser) addErr(err error) {
|
|
p.addErrAt(err, p.pt.position, []string{})
|
|
}
|
|
|
|
func (p *parser) addErrAt(err error, pos position, expected []string) {
|
|
var buf bytes.Buffer
|
|
if p.filename != "" {
|
|
buf.WriteString(p.filename)
|
|
}
|
|
if buf.Len() > 0 {
|
|
buf.WriteString(":")
|
|
}
|
|
buf.WriteString(fmt.Sprintf("%d:%d (%d)", pos.line, pos.col, pos.offset))
|
|
if len(p.rstack) > 0 {
|
|
if buf.Len() > 0 {
|
|
buf.WriteString(": ")
|
|
}
|
|
rule := p.rstack[len(p.rstack)-1]
|
|
if rule.displayName != "" {
|
|
buf.WriteString("rule " + rule.displayName)
|
|
} else {
|
|
buf.WriteString("rule " + rule.name)
|
|
}
|
|
}
|
|
pe := &parserError{Inner: err, pos: pos, prefix: buf.String(), expected: expected}
|
|
p.errs.add(pe)
|
|
}
|
|
|
|
func (p *parser) failAt(fail bool, pos position, want string) {
|
|
// process fail if parsing fails and not inverted or parsing succeeds and invert is set
|
|
if fail == p.maxFailInvertExpected {
|
|
if pos.offset < p.maxFailPos.offset {
|
|
return
|
|
}
|
|
|
|
if pos.offset > p.maxFailPos.offset {
|
|
p.maxFailPos = pos
|
|
p.maxFailExpected = p.maxFailExpected[:0]
|
|
}
|
|
|
|
if p.maxFailInvertExpected {
|
|
want = "!" + want
|
|
}
|
|
p.maxFailExpected = append(p.maxFailExpected, want)
|
|
}
|
|
}
|
|
|
|
// read advances the parser to the next rune.
|
|
func (p *parser) read() {
|
|
p.pt.offset += p.pt.w
|
|
rn, n := utf8.DecodeRune(p.data[p.pt.offset:])
|
|
p.pt.rn = rn
|
|
p.pt.w = n
|
|
p.pt.col++
|
|
if rn == '\n' {
|
|
p.pt.line++
|
|
p.pt.col = 0
|
|
}
|
|
|
|
if rn == utf8.RuneError && n == 1 { // see utf8.DecodeRune
|
|
if !p.allowInvalidUTF8 {
|
|
p.addErr(errInvalidEncoding)
|
|
}
|
|
}
|
|
}
|
|
|
|
// restore parser position to the savepoint pt.
|
|
func (p *parser) restore(pt savepoint) {
|
|
if p.debug {
|
|
defer p.out(p.in("restore"))
|
|
}
|
|
if pt.offset == p.pt.offset {
|
|
return
|
|
}
|
|
p.pt = pt
|
|
}
|
|
|
|
// Cloner is implemented by any value that has a Clone method, which returns a
|
|
// copy of the value. This is mainly used for types which are not passed by
|
|
// value (e.g map, slice, chan) or structs that contain such types.
|
|
//
|
|
// This is used in conjunction with the global state feature to create proper
|
|
// copies of the state to allow the parser to properly restore the state in
|
|
// the case of backtracking.
|
|
type Cloner interface {
|
|
Clone() any
|
|
}
|
|
|
|
var statePool = &sync.Pool{
|
|
New: func() any { return make(storeDict) },
|
|
}
|
|
|
|
func (sd storeDict) Discard() {
|
|
for k := range sd {
|
|
delete(sd, k)
|
|
}
|
|
statePool.Put(sd)
|
|
}
|
|
|
|
// clone and return parser current state.
|
|
func (p *parser) cloneState() storeDict {
|
|
if p.debug {
|
|
defer p.out(p.in("cloneState"))
|
|
}
|
|
|
|
state := statePool.Get().(storeDict)
|
|
for k, v := range p.cur.state {
|
|
if c, ok := v.(Cloner); ok {
|
|
state[k] = c.Clone()
|
|
} else {
|
|
state[k] = v
|
|
}
|
|
}
|
|
return state
|
|
}
|
|
|
|
// restore parser current state to the state storeDict.
|
|
// every restoreState should applied only one time for every cloned state
|
|
func (p *parser) restoreState(state storeDict) {
|
|
if p.debug {
|
|
defer p.out(p.in("restoreState"))
|
|
}
|
|
p.cur.state.Discard()
|
|
p.cur.state = state
|
|
}
|
|
|
|
// get the slice of bytes from the savepoint start to the current position.
|
|
func (p *parser) sliceFrom(start savepoint) []byte {
|
|
return p.data[start.position.offset:p.pt.position.offset]
|
|
}
|
|
|
|
func (p *parser) getMemoized(node any) (resultTuple, bool) {
|
|
if len(p.memo) == 0 {
|
|
return resultTuple{}, false
|
|
}
|
|
m := p.memo[p.pt.offset]
|
|
if len(m) == 0 {
|
|
return resultTuple{}, false
|
|
}
|
|
res, ok := m[node]
|
|
return res, ok
|
|
}
|
|
|
|
func (p *parser) setMemoized(pt savepoint, node any, tuple resultTuple) {
|
|
if p.memo == nil {
|
|
p.memo = make(map[int]map[any]resultTuple)
|
|
}
|
|
m := p.memo[pt.offset]
|
|
if m == nil {
|
|
m = make(map[any]resultTuple)
|
|
p.memo[pt.offset] = m
|
|
}
|
|
m[node] = tuple
|
|
}
|
|
|
|
func (p *parser) buildRulesTable(g *grammar) {
|
|
p.rules = make(map[string]*rule, len(g.rules))
|
|
for _, r := range g.rules {
|
|
p.rules[r.name] = r
|
|
}
|
|
}
|
|
|
|
func (p *parser) parse(g *grammar) (val any, err error) {
|
|
if len(g.rules) == 0 {
|
|
p.addErr(errNoRule)
|
|
return nil, p.errs.err()
|
|
}
|
|
|
|
// TODO : not super critical but this could be generated
|
|
p.buildRulesTable(g)
|
|
|
|
if p.recover {
|
|
// panic can be used in action code to stop parsing immediately
|
|
// and return the panic as an error.
|
|
defer func() {
|
|
if e := recover(); e != nil {
|
|
if p.debug {
|
|
defer p.out(p.in("panic handler"))
|
|
}
|
|
val = nil
|
|
switch e := e.(type) {
|
|
case error:
|
|
p.addErr(e)
|
|
default:
|
|
p.addErr(fmt.Errorf("%v", e))
|
|
}
|
|
err = p.errs.err()
|
|
}
|
|
}()
|
|
}
|
|
|
|
startRule, ok := p.rules[p.entrypoint]
|
|
if !ok {
|
|
p.addErr(errInvalidEntrypoint)
|
|
return nil, p.errs.err()
|
|
}
|
|
|
|
p.read() // advance to first rune
|
|
val, ok = p.parseRuleWrap(startRule)
|
|
if !ok {
|
|
if len(*p.errs) == 0 {
|
|
// If parsing fails, but no errors have been recorded, the expected values
|
|
// for the farthest parser position are returned as error.
|
|
maxFailExpectedMap := make(map[string]struct{}, len(p.maxFailExpected))
|
|
for _, v := range p.maxFailExpected {
|
|
maxFailExpectedMap[v] = struct{}{}
|
|
}
|
|
expected := make([]string, 0, len(maxFailExpectedMap))
|
|
eof := false
|
|
if _, ok := maxFailExpectedMap["!."]; ok {
|
|
delete(maxFailExpectedMap, "!.")
|
|
eof = true
|
|
}
|
|
for k := range maxFailExpectedMap {
|
|
expected = append(expected, k)
|
|
}
|
|
sort.Strings(expected)
|
|
if eof {
|
|
expected = append(expected, "EOF")
|
|
}
|
|
p.addErrAt(errors.New("no match found, expected: "+listJoin(expected, ", ", "or")), p.maxFailPos, expected)
|
|
}
|
|
|
|
return nil, p.errs.err()
|
|
}
|
|
return val, p.errs.err()
|
|
}
|
|
|
|
func listJoin(list []string, sep string, lastSep string) string {
|
|
switch len(list) {
|
|
case 0:
|
|
return ""
|
|
case 1:
|
|
return list[0]
|
|
default:
|
|
return strings.Join(list[:len(list)-1], sep) + " " + lastSep + " " + list[len(list)-1]
|
|
}
|
|
}
|
|
|
|
func (p *parser) parseRuleMemoize(rule *rule) (any, bool) {
|
|
res, ok := p.getMemoized(rule)
|
|
if ok {
|
|
p.restore(res.end)
|
|
return res.v, res.b
|
|
}
|
|
|
|
startMark := p.pt
|
|
val, ok := p.parseRule(rule)
|
|
p.setMemoized(startMark, rule, resultTuple{val, ok, p.pt})
|
|
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseRuleWrap(rule *rule) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseRule " + rule.name))
|
|
}
|
|
var (
|
|
val any
|
|
ok bool
|
|
startMark = p.pt
|
|
)
|
|
|
|
if p.memoize {
|
|
val, ok = p.parseRuleMemoize(rule)
|
|
} else {
|
|
val, ok = p.parseRule(rule)
|
|
}
|
|
|
|
if ok && p.debug {
|
|
p.printIndent("MATCH", string(p.sliceFrom(startMark)))
|
|
}
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseRule(rule *rule) (any, bool) {
|
|
p.rstack = append(p.rstack, rule)
|
|
p.pushV()
|
|
val, ok := p.parseExprWrap(rule.expr)
|
|
p.popV()
|
|
p.rstack = p.rstack[:len(p.rstack)-1]
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseExprWrap(expr any) (any, bool) {
|
|
var pt savepoint
|
|
|
|
if p.memoize {
|
|
res, ok := p.getMemoized(expr)
|
|
if ok {
|
|
p.restore(res.end)
|
|
return res.v, res.b
|
|
}
|
|
pt = p.pt
|
|
}
|
|
|
|
val, ok := p.parseExpr(expr)
|
|
|
|
if p.memoize {
|
|
p.setMemoized(pt, expr, resultTuple{val, ok, p.pt})
|
|
}
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseExpr(expr any) (any, bool) {
|
|
p.ExprCnt++
|
|
if p.ExprCnt > p.maxExprCnt {
|
|
panic(errMaxExprCnt)
|
|
}
|
|
|
|
var val any
|
|
var ok bool
|
|
switch expr := expr.(type) {
|
|
case *actionExpr:
|
|
val, ok = p.parseActionExpr(expr)
|
|
case *andCodeExpr:
|
|
val, ok = p.parseAndCodeExpr(expr)
|
|
case *andExpr:
|
|
val, ok = p.parseAndExpr(expr)
|
|
case *anyMatcher:
|
|
val, ok = p.parseAnyMatcher(expr)
|
|
case *charClassMatcher:
|
|
val, ok = p.parseCharClassMatcher(expr)
|
|
case *choiceExpr:
|
|
val, ok = p.parseChoiceExpr(expr)
|
|
case *labeledExpr:
|
|
val, ok = p.parseLabeledExpr(expr)
|
|
case *litMatcher:
|
|
val, ok = p.parseLitMatcher(expr)
|
|
case *notCodeExpr:
|
|
val, ok = p.parseNotCodeExpr(expr)
|
|
case *notExpr:
|
|
val, ok = p.parseNotExpr(expr)
|
|
case *oneOrMoreExpr:
|
|
val, ok = p.parseOneOrMoreExpr(expr)
|
|
case *recoveryExpr:
|
|
val, ok = p.parseRecoveryExpr(expr)
|
|
case *ruleRefExpr:
|
|
val, ok = p.parseRuleRefExpr(expr)
|
|
case *seqExpr:
|
|
val, ok = p.parseSeqExpr(expr)
|
|
case *stateCodeExpr:
|
|
val, ok = p.parseStateCodeExpr(expr)
|
|
case *throwExpr:
|
|
val, ok = p.parseThrowExpr(expr)
|
|
case *zeroOrMoreExpr:
|
|
val, ok = p.parseZeroOrMoreExpr(expr)
|
|
case *zeroOrOneExpr:
|
|
val, ok = p.parseZeroOrOneExpr(expr)
|
|
default:
|
|
panic(fmt.Sprintf("unknown expression type %T", expr))
|
|
}
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseActionExpr(act *actionExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseActionExpr"))
|
|
}
|
|
|
|
start := p.pt
|
|
val, ok := p.parseExprWrap(act.expr)
|
|
if ok {
|
|
p.cur.pos = start.position
|
|
p.cur.text = p.sliceFrom(start)
|
|
state := p.cloneState()
|
|
actVal, err := act.run(p)
|
|
if err != nil {
|
|
p.addErrAt(err, start.position, []string{})
|
|
}
|
|
p.restoreState(state)
|
|
|
|
val = actVal
|
|
}
|
|
if ok && p.debug {
|
|
p.printIndent("MATCH", string(p.sliceFrom(start)))
|
|
}
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseAndCodeExpr(and *andCodeExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseAndCodeExpr"))
|
|
}
|
|
|
|
state := p.cloneState()
|
|
|
|
ok, err := and.run(p)
|
|
if err != nil {
|
|
p.addErr(err)
|
|
}
|
|
p.restoreState(state)
|
|
|
|
return nil, ok
|
|
}
|
|
|
|
func (p *parser) parseAndExpr(and *andExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseAndExpr"))
|
|
}
|
|
|
|
pt := p.pt
|
|
state := p.cloneState()
|
|
p.pushV()
|
|
_, ok := p.parseExprWrap(and.expr)
|
|
p.popV()
|
|
p.restoreState(state)
|
|
p.restore(pt)
|
|
|
|
return nil, ok
|
|
}
|
|
|
|
func (p *parser) parseAnyMatcher(any *anyMatcher) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseAnyMatcher"))
|
|
}
|
|
|
|
if p.pt.rn == utf8.RuneError && p.pt.w == 0 {
|
|
// EOF - see utf8.DecodeRune
|
|
p.failAt(false, p.pt.position, ".")
|
|
return nil, false
|
|
}
|
|
start := p.pt
|
|
p.read()
|
|
p.failAt(true, start.position, ".")
|
|
return p.sliceFrom(start), true
|
|
}
|
|
|
|
func (p *parser) parseCharClassMatcher(chr *charClassMatcher) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseCharClassMatcher"))
|
|
}
|
|
|
|
cur := p.pt.rn
|
|
start := p.pt
|
|
|
|
// can't match EOF
|
|
if cur == utf8.RuneError && p.pt.w == 0 { // see utf8.DecodeRune
|
|
p.failAt(false, start.position, chr.val)
|
|
return nil, false
|
|
}
|
|
|
|
if chr.ignoreCase {
|
|
cur = unicode.ToLower(cur)
|
|
}
|
|
|
|
// try to match in the list of available chars
|
|
for _, rn := range chr.chars {
|
|
if rn == cur {
|
|
if chr.inverted {
|
|
p.failAt(false, start.position, chr.val)
|
|
return nil, false
|
|
}
|
|
p.read()
|
|
p.failAt(true, start.position, chr.val)
|
|
return p.sliceFrom(start), true
|
|
}
|
|
}
|
|
|
|
// try to match in the list of ranges
|
|
for i := 0; i < len(chr.ranges); i += 2 {
|
|
if cur >= chr.ranges[i] && cur <= chr.ranges[i+1] {
|
|
if chr.inverted {
|
|
p.failAt(false, start.position, chr.val)
|
|
return nil, false
|
|
}
|
|
p.read()
|
|
p.failAt(true, start.position, chr.val)
|
|
return p.sliceFrom(start), true
|
|
}
|
|
}
|
|
|
|
// try to match in the list of Unicode classes
|
|
for _, cl := range chr.classes {
|
|
if unicode.Is(cl, cur) {
|
|
if chr.inverted {
|
|
p.failAt(false, start.position, chr.val)
|
|
return nil, false
|
|
}
|
|
p.read()
|
|
p.failAt(true, start.position, chr.val)
|
|
return p.sliceFrom(start), true
|
|
}
|
|
}
|
|
|
|
if chr.inverted {
|
|
p.read()
|
|
p.failAt(true, start.position, chr.val)
|
|
return p.sliceFrom(start), true
|
|
}
|
|
p.failAt(false, start.position, chr.val)
|
|
return nil, false
|
|
}
|
|
|
|
func (p *parser) incChoiceAltCnt(ch *choiceExpr, altI int) {
|
|
choiceIdent := fmt.Sprintf("%s %d:%d", p.rstack[len(p.rstack)-1].name, ch.pos.line, ch.pos.col)
|
|
m := p.ChoiceAltCnt[choiceIdent]
|
|
if m == nil {
|
|
m = make(map[string]int)
|
|
p.ChoiceAltCnt[choiceIdent] = m
|
|
}
|
|
// We increment altI by 1, so the keys do not start at 0
|
|
alt := strconv.Itoa(altI + 1)
|
|
if altI == choiceNoMatch {
|
|
alt = p.choiceNoMatch
|
|
}
|
|
m[alt]++
|
|
}
|
|
|
|
func (p *parser) parseChoiceExpr(ch *choiceExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseChoiceExpr"))
|
|
}
|
|
|
|
for altI, alt := range ch.alternatives {
|
|
// dummy assignment to prevent compile error if optimized
|
|
_ = altI
|
|
|
|
state := p.cloneState()
|
|
|
|
p.pushV()
|
|
val, ok := p.parseExprWrap(alt)
|
|
p.popV()
|
|
if ok {
|
|
p.incChoiceAltCnt(ch, altI)
|
|
return val, ok
|
|
}
|
|
p.restoreState(state)
|
|
}
|
|
p.incChoiceAltCnt(ch, choiceNoMatch)
|
|
return nil, false
|
|
}
|
|
|
|
func (p *parser) parseLabeledExpr(lab *labeledExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseLabeledExpr"))
|
|
}
|
|
|
|
p.pushV()
|
|
val, ok := p.parseExprWrap(lab.expr)
|
|
p.popV()
|
|
if ok && lab.label != "" {
|
|
m := p.vstack[len(p.vstack)-1]
|
|
m[lab.label] = val
|
|
}
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseLitMatcher(lit *litMatcher) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseLitMatcher"))
|
|
}
|
|
|
|
start := p.pt
|
|
for _, want := range lit.val {
|
|
cur := p.pt.rn
|
|
if lit.ignoreCase {
|
|
cur = unicode.ToLower(cur)
|
|
}
|
|
if cur != want {
|
|
p.failAt(false, start.position, lit.want)
|
|
p.restore(start)
|
|
return nil, false
|
|
}
|
|
p.read()
|
|
}
|
|
p.failAt(true, start.position, lit.want)
|
|
return p.sliceFrom(start), true
|
|
}
|
|
|
|
func (p *parser) parseNotCodeExpr(not *notCodeExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseNotCodeExpr"))
|
|
}
|
|
|
|
state := p.cloneState()
|
|
|
|
ok, err := not.run(p)
|
|
if err != nil {
|
|
p.addErr(err)
|
|
}
|
|
p.restoreState(state)
|
|
|
|
return nil, !ok
|
|
}
|
|
|
|
func (p *parser) parseNotExpr(not *notExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseNotExpr"))
|
|
}
|
|
|
|
pt := p.pt
|
|
state := p.cloneState()
|
|
p.pushV()
|
|
p.maxFailInvertExpected = !p.maxFailInvertExpected
|
|
_, ok := p.parseExprWrap(not.expr)
|
|
p.maxFailInvertExpected = !p.maxFailInvertExpected
|
|
p.popV()
|
|
p.restoreState(state)
|
|
p.restore(pt)
|
|
|
|
return nil, !ok
|
|
}
|
|
|
|
func (p *parser) parseOneOrMoreExpr(expr *oneOrMoreExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseOneOrMoreExpr"))
|
|
}
|
|
|
|
var vals []any
|
|
|
|
for {
|
|
p.pushV()
|
|
val, ok := p.parseExprWrap(expr.expr)
|
|
p.popV()
|
|
if !ok {
|
|
if len(vals) == 0 {
|
|
// did not match once, no match
|
|
return nil, false
|
|
}
|
|
return vals, true
|
|
}
|
|
vals = append(vals, val)
|
|
}
|
|
}
|
|
|
|
func (p *parser) parseRecoveryExpr(recover *recoveryExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseRecoveryExpr (" + strings.Join(recover.failureLabel, ",") + ")"))
|
|
}
|
|
|
|
p.pushRecovery(recover.failureLabel, recover.recoverExpr)
|
|
val, ok := p.parseExprWrap(recover.expr)
|
|
p.popRecovery()
|
|
|
|
return val, ok
|
|
}
|
|
|
|
func (p *parser) parseRuleRefExpr(ref *ruleRefExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseRuleRefExpr " + ref.name))
|
|
}
|
|
|
|
if ref.name == "" {
|
|
panic(fmt.Sprintf("%s: invalid rule: missing name", ref.pos))
|
|
}
|
|
|
|
rule := p.rules[ref.name]
|
|
if rule == nil {
|
|
p.addErr(fmt.Errorf("undefined rule: %s", ref.name))
|
|
return nil, false
|
|
}
|
|
return p.parseRuleWrap(rule)
|
|
}
|
|
|
|
func (p *parser) parseSeqExpr(seq *seqExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseSeqExpr"))
|
|
}
|
|
|
|
vals := make([]any, 0, len(seq.exprs))
|
|
|
|
pt := p.pt
|
|
state := p.cloneState()
|
|
for _, expr := range seq.exprs {
|
|
val, ok := p.parseExprWrap(expr)
|
|
if !ok {
|
|
p.restoreState(state)
|
|
p.restore(pt)
|
|
return nil, false
|
|
}
|
|
vals = append(vals, val)
|
|
}
|
|
return vals, true
|
|
}
|
|
|
|
func (p *parser) parseStateCodeExpr(state *stateCodeExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseStateCodeExpr"))
|
|
}
|
|
|
|
err := state.run(p)
|
|
if err != nil {
|
|
p.addErr(err)
|
|
}
|
|
return nil, true
|
|
}
|
|
|
|
func (p *parser) parseThrowExpr(expr *throwExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseThrowExpr"))
|
|
}
|
|
|
|
for i := len(p.recoveryStack) - 1; i >= 0; i-- {
|
|
if recoverExpr, ok := p.recoveryStack[i][expr.label]; ok {
|
|
if val, ok := p.parseExprWrap(recoverExpr); ok {
|
|
return val, ok
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil, false
|
|
}
|
|
|
|
func (p *parser) parseZeroOrMoreExpr(expr *zeroOrMoreExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseZeroOrMoreExpr"))
|
|
}
|
|
|
|
var vals []any
|
|
|
|
for {
|
|
p.pushV()
|
|
val, ok := p.parseExprWrap(expr.expr)
|
|
p.popV()
|
|
if !ok {
|
|
return vals, true
|
|
}
|
|
vals = append(vals, val)
|
|
}
|
|
}
|
|
|
|
func (p *parser) parseZeroOrOneExpr(expr *zeroOrOneExpr) (any, bool) {
|
|
if p.debug {
|
|
defer p.out(p.in("parseZeroOrOneExpr"))
|
|
}
|
|
|
|
p.pushV()
|
|
val, _ := p.parseExprWrap(expr.expr)
|
|
p.popV()
|
|
// whether it matched or not, consider it a match
|
|
return val, true
|
|
}
|