mirror of
https://github.com/pikami/cosmium.git
synced 2025-09-10 07:07:02 +01:00
11635 lines
314 KiB
Go
11635 lines
314 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 createUDFCall(functionName interface{}, arguments []interface{}) (parsers.FunctionCall, error) {
|
|
return parsers.FunctionCall{
|
|
Type: parsers.FunctionCallUDF,
|
|
UdfName: functionName.(string),
|
|
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: 217, col: 1, offset: 6220},
|
|
expr: &actionExpr{
|
|
pos: position{line: 217, col: 10, offset: 6229},
|
|
run: (*parser).callonInput1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 217, col: 10, offset: 6229},
|
|
label: "selectStmt",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 217, col: 21, offset: 6240},
|
|
name: "SelectStmt",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectStmt",
|
|
pos: position{line: 221, col: 1, offset: 6283},
|
|
expr: &actionExpr{
|
|
pos: position{line: 221, col: 15, offset: 6297},
|
|
run: (*parser).callonSelectStmt1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 221, col: 15, offset: 6297},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 221, col: 15, offset: 6297},
|
|
name: "Select",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 221, col: 22, offset: 6304},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 222, col: 5, offset: 6311},
|
|
label: "distinctClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 222, col: 20, offset: 6326},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 222, col: 20, offset: 6326},
|
|
name: "DistinctClause",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 222, col: 36, offset: 6342},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 223, col: 5, offset: 6349},
|
|
label: "topClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 223, col: 15, offset: 6359},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 223, col: 15, offset: 6359},
|
|
name: "TopClause",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 223, col: 26, offset: 6370},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 224, col: 5, offset: 6377},
|
|
label: "columns",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 224, col: 13, offset: 6385},
|
|
name: "Selection",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 224, col: 23, offset: 6395},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 225, col: 5, offset: 6402},
|
|
label: "fromClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 225, col: 16, offset: 6413},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 225, col: 16, offset: 6413},
|
|
name: "FromClause",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 225, col: 28, offset: 6425},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 226, col: 5, offset: 6432},
|
|
label: "joinClauses",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 226, col: 17, offset: 6444},
|
|
expr: &actionExpr{
|
|
pos: position{line: 226, col: 18, offset: 6445},
|
|
run: (*parser).callonSelectStmt22,
|
|
expr: &seqExpr{
|
|
pos: position{line: 226, col: 18, offset: 6445},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 226, col: 18, offset: 6445},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 226, col: 21, offset: 6448},
|
|
label: "join",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 226, col: 26, offset: 6453},
|
|
name: "JoinClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 226, col: 60, offset: 6487},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 227, col: 5, offset: 6494},
|
|
label: "whereClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 227, col: 17, offset: 6506},
|
|
expr: &actionExpr{
|
|
pos: position{line: 227, col: 18, offset: 6507},
|
|
run: (*parser).callonSelectStmt30,
|
|
expr: &seqExpr{
|
|
pos: position{line: 227, col: 18, offset: 6507},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 227, col: 18, offset: 6507},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 227, col: 21, offset: 6510},
|
|
name: "Where",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 227, col: 27, offset: 6516},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 227, col: 30, offset: 6519},
|
|
label: "condition",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 227, col: 40, offset: 6529},
|
|
name: "Condition",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 228, col: 5, offset: 6571},
|
|
label: "groupByClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 228, col: 19, offset: 6585},
|
|
expr: &actionExpr{
|
|
pos: position{line: 228, col: 20, offset: 6586},
|
|
run: (*parser).callonSelectStmt39,
|
|
expr: &seqExpr{
|
|
pos: position{line: 228, col: 20, offset: 6586},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 228, col: 20, offset: 6586},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 228, col: 23, offset: 6589},
|
|
name: "GroupBy",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 228, col: 31, offset: 6597},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 228, col: 34, offset: 6600},
|
|
label: "columns",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 228, col: 42, offset: 6608},
|
|
name: "ColumnList",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 229, col: 5, offset: 6649},
|
|
label: "orderByClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 229, col: 19, offset: 6663},
|
|
expr: &actionExpr{
|
|
pos: position{line: 229, col: 20, offset: 6664},
|
|
run: (*parser).callonSelectStmt48,
|
|
expr: &seqExpr{
|
|
pos: position{line: 229, col: 20, offset: 6664},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 229, col: 20, offset: 6664},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 229, col: 23, offset: 6667},
|
|
label: "order",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 229, col: 29, offset: 6673},
|
|
name: "OrderByClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 230, col: 5, offset: 6715},
|
|
label: "offsetClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 230, col: 18, offset: 6728},
|
|
expr: &actionExpr{
|
|
pos: position{line: 230, col: 19, offset: 6729},
|
|
run: (*parser).callonSelectStmt55,
|
|
expr: &seqExpr{
|
|
pos: position{line: 230, col: 19, offset: 6729},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 230, col: 19, offset: 6729},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 230, col: 22, offset: 6732},
|
|
label: "offset",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 230, col: 29, offset: 6739},
|
|
name: "OffsetClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "DistinctClause",
|
|
pos: position{line: 235, col: 1, offset: 6934},
|
|
expr: &litMatcher{
|
|
pos: position{line: 235, col: 19, offset: 6952},
|
|
val: "distinct",
|
|
ignoreCase: true,
|
|
want: "\"DISTINCT\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "TopClause",
|
|
pos: position{line: 237, col: 1, offset: 6965},
|
|
expr: &actionExpr{
|
|
pos: position{line: 237, col: 14, offset: 6978},
|
|
run: (*parser).callonTopClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 237, col: 14, offset: 6978},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 237, col: 14, offset: 6978},
|
|
name: "Top",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 237, col: 18, offset: 6982},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 237, col: 21, offset: 6985},
|
|
label: "count",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 237, col: 27, offset: 6991},
|
|
name: "Integer",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "FromClause",
|
|
pos: position{line: 241, col: 1, offset: 7026},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 241, col: 15, offset: 7040},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 241, col: 15, offset: 7040},
|
|
run: (*parser).callonFromClause2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 241, col: 15, offset: 7040},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 241, col: 15, offset: 7040},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 241, col: 20, offset: 7045},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 241, col: 23, offset: 7048},
|
|
label: "table",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 241, col: 29, offset: 7054},
|
|
name: "TableName",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 241, col: 39, offset: 7064},
|
|
label: "selectItem",
|
|
expr: &actionExpr{
|
|
pos: position{line: 241, col: 51, offset: 7076},
|
|
run: (*parser).callonFromClause9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 241, col: 51, offset: 7076},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 241, col: 51, offset: 7076},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 241, col: 54, offset: 7079},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 241, col: 57, offset: 7082},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 241, col: 60, offset: 7085},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 241, col: 67, offset: 7092},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 250, col: 5, offset: 7345},
|
|
run: (*parser).callonFromClause16,
|
|
expr: &seqExpr{
|
|
pos: position{line: 250, col: 5, offset: 7345},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 250, col: 5, offset: 7345},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 250, col: 10, offset: 7350},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 250, col: 13, offset: 7353},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 250, col: 20, offset: 7360},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 257, col: 5, offset: 7568},
|
|
run: (*parser).callonFromClause22,
|
|
expr: &seqExpr{
|
|
pos: position{line: 257, col: 5, offset: 7568},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 257, col: 5, offset: 7568},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 257, col: 10, offset: 7573},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 257, col: 13, offset: 7576},
|
|
label: "subQuery",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 257, col: 22, offset: 7585},
|
|
name: "SubQuerySelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SubQuery",
|
|
pos: position{line: 266, col: 1, offset: 7787},
|
|
expr: &actionExpr{
|
|
pos: position{line: 266, col: 13, offset: 7799},
|
|
run: (*parser).callonSubQuery1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 266, col: 13, offset: 7799},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 266, col: 13, offset: 7799},
|
|
label: "exists",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 266, col: 20, offset: 7806},
|
|
expr: &actionExpr{
|
|
pos: position{line: 266, col: 21, offset: 7807},
|
|
run: (*parser).callonSubQuery5,
|
|
expr: &seqExpr{
|
|
pos: position{line: 266, col: 21, offset: 7807},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 266, col: 21, offset: 7807},
|
|
label: "exists",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 266, col: 28, offset: 7814},
|
|
name: "Exists",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 266, col: 35, offset: 7821},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 266, col: 63, offset: 7849},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 266, col: 67, offset: 7853},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 266, col: 70, offset: 7856},
|
|
label: "selectStmt",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 266, col: 81, offset: 7867},
|
|
name: "SelectStmt",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 266, col: 92, offset: 7878},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 266, col: 95, offset: 7881},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SubQuerySelectItem",
|
|
pos: position{line: 275, col: 1, offset: 8093},
|
|
expr: &actionExpr{
|
|
pos: position{line: 275, col: 23, offset: 8115},
|
|
run: (*parser).callonSubQuerySelectItem1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 275, col: 23, offset: 8115},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 275, col: 23, offset: 8115},
|
|
label: "subQuery",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 275, col: 32, offset: 8124},
|
|
name: "SubQuery",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 275, col: 41, offset: 8133},
|
|
label: "asClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 275, col: 50, offset: 8142},
|
|
expr: &actionExpr{
|
|
pos: position{line: 275, col: 51, offset: 8143},
|
|
run: (*parser).callonSubQuerySelectItem7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 275, col: 51, offset: 8143},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 275, col: 51, offset: 8143},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 275, col: 54, offset: 8146},
|
|
label: "alias",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 275, col: 60, offset: 8152},
|
|
name: "AsClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "JoinClause",
|
|
pos: position{line: 288, col: 1, offset: 8437},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 288, col: 15, offset: 8451},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 288, col: 15, offset: 8451},
|
|
run: (*parser).callonJoinClause2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 288, col: 15, offset: 8451},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 288, col: 15, offset: 8451},
|
|
name: "Join",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 288, col: 20, offset: 8456},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 288, col: 23, offset: 8459},
|
|
label: "table",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 288, col: 29, offset: 8465},
|
|
name: "TableName",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 288, col: 39, offset: 8475},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 288, col: 42, offset: 8478},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 288, col: 45, offset: 8481},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 288, col: 48, offset: 8484},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 288, col: 55, offset: 8491},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 290, col: 5, offset: 8552},
|
|
run: (*parser).callonJoinClause13,
|
|
expr: &seqExpr{
|
|
pos: position{line: 290, col: 5, offset: 8552},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 290, col: 5, offset: 8552},
|
|
name: "Join",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 290, col: 10, offset: 8557},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 290, col: 13, offset: 8560},
|
|
label: "subQuery",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 290, col: 22, offset: 8569},
|
|
name: "SubQuerySelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OffsetClause",
|
|
pos: position{line: 294, col: 1, offset: 8628},
|
|
expr: &actionExpr{
|
|
pos: position{line: 294, col: 17, offset: 8644},
|
|
run: (*parser).callonOffsetClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 294, col: 17, offset: 8644},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 294, col: 17, offset: 8644},
|
|
name: "Offset",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 294, col: 24, offset: 8651},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 294, col: 27, offset: 8654},
|
|
label: "offset",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 294, col: 34, offset: 8661},
|
|
name: "IntegerLiteral",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 294, col: 49, offset: 8676},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 294, col: 52, offset: 8679},
|
|
val: "limit",
|
|
ignoreCase: true,
|
|
want: "\"LIMIT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 294, col: 61, offset: 8688},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 294, col: 64, offset: 8691},
|
|
label: "limit",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 294, col: 70, offset: 8697},
|
|
name: "IntegerLiteral",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Selection",
|
|
pos: position{line: 298, col: 1, offset: 8812},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 298, col: 14, offset: 8825},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 298, col: 14, offset: 8825},
|
|
name: "SelectValueSpec",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 298, col: 32, offset: 8843},
|
|
name: "ColumnList",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 298, col: 45, offset: 8856},
|
|
name: "SelectAsterisk",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectAsterisk",
|
|
pos: position{line: 300, col: 1, offset: 8872},
|
|
expr: &actionExpr{
|
|
pos: position{line: 300, col: 19, offset: 8890},
|
|
run: (*parser).callonSelectAsterisk1,
|
|
expr: &litMatcher{
|
|
pos: position{line: 300, col: 19, offset: 8890},
|
|
val: "*",
|
|
ignoreCase: false,
|
|
want: "\"*\"",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ColumnList",
|
|
pos: position{line: 306, col: 1, offset: 9088},
|
|
expr: &actionExpr{
|
|
pos: position{line: 306, col: 15, offset: 9102},
|
|
run: (*parser).callonColumnList1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 306, col: 15, offset: 9102},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 306, col: 15, offset: 9102},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 306, col: 22, offset: 9109},
|
|
name: "ExpressionOrSelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 306, col: 45, offset: 9132},
|
|
label: "other_columns",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 306, col: 59, offset: 9146},
|
|
expr: &actionExpr{
|
|
pos: position{line: 306, col: 60, offset: 9147},
|
|
run: (*parser).callonColumnList7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 306, col: 60, offset: 9147},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 306, col: 60, offset: 9147},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 306, col: 63, offset: 9150},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 306, col: 67, offset: 9154},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 306, col: 70, offset: 9157},
|
|
label: "coll",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 306, col: 75, offset: 9162},
|
|
name: "ExpressionOrSelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ExpressionOrSelectItem",
|
|
pos: position{line: 310, col: 1, offset: 9261},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 310, col: 27, offset: 9287},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 310, col: 27, offset: 9287},
|
|
run: (*parser).callonExpressionOrSelectItem2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 310, col: 27, offset: 9287},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 310, col: 27, offset: 9287},
|
|
label: "expression",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 310, col: 38, offset: 9298},
|
|
name: "OrExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 310, col: 51, offset: 9311},
|
|
label: "asClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 310, col: 60, offset: 9320},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 310, col: 60, offset: 9320},
|
|
name: "AsClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 331, col: 5, offset: 9935},
|
|
run: (*parser).callonExpressionOrSelectItem9,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 331, col: 5, offset: 9935},
|
|
label: "item",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 331, col: 10, offset: 9940},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectValueSpec",
|
|
pos: position{line: 333, col: 1, offset: 9982},
|
|
expr: &actionExpr{
|
|
pos: position{line: 333, col: 20, offset: 10001},
|
|
run: (*parser).callonSelectValueSpec1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 333, col: 20, offset: 10001},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 333, col: 20, offset: 10001},
|
|
val: "value",
|
|
ignoreCase: true,
|
|
want: "\"VALUE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 333, col: 29, offset: 10010},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 333, col: 32, offset: 10013},
|
|
label: "column",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 333, col: 39, offset: 10020},
|
|
name: "SelectItemWithAlias",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "TableName",
|
|
pos: position{line: 339, col: 1, offset: 10186},
|
|
expr: &actionExpr{
|
|
pos: position{line: 339, col: 14, offset: 10199},
|
|
run: (*parser).callonTableName1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 339, col: 14, offset: 10199},
|
|
label: "key",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 339, col: 18, offset: 10203},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectArray",
|
|
pos: position{line: 343, col: 1, offset: 10270},
|
|
expr: &actionExpr{
|
|
pos: position{line: 343, col: 16, offset: 10285},
|
|
run: (*parser).callonSelectArray1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 343, col: 16, offset: 10285},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 343, col: 16, offset: 10285},
|
|
val: "[",
|
|
ignoreCase: false,
|
|
want: "\"[\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 343, col: 20, offset: 10289},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 343, col: 23, offset: 10292},
|
|
label: "columns",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 343, col: 31, offset: 10300},
|
|
name: "ColumnList",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 343, col: 42, offset: 10311},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 343, col: 45, offset: 10314},
|
|
val: "]",
|
|
ignoreCase: false,
|
|
want: "\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectObject",
|
|
pos: position{line: 347, col: 1, offset: 10359},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 347, col: 17, offset: 10375},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 347, col: 17, offset: 10375},
|
|
run: (*parser).callonSelectObject2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 347, col: 17, offset: 10375},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 347, col: 17, offset: 10375},
|
|
val: "{",
|
|
ignoreCase: false,
|
|
want: "\"{\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 347, col: 21, offset: 10379},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 347, col: 24, offset: 10382},
|
|
label: "field",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 347, col: 30, offset: 10388},
|
|
name: "SelectObjectField",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 347, col: 48, offset: 10406},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 347, col: 51, offset: 10409},
|
|
label: "other_fields",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 347, col: 64, offset: 10422},
|
|
expr: &actionExpr{
|
|
pos: position{line: 347, col: 65, offset: 10423},
|
|
run: (*parser).callonSelectObject11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 347, col: 65, offset: 10423},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 347, col: 65, offset: 10423},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 347, col: 68, offset: 10426},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 347, col: 72, offset: 10430},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 347, col: 75, offset: 10433},
|
|
label: "coll",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 347, col: 80, offset: 10438},
|
|
name: "SelectObjectField",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 347, col: 120, offset: 10478},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 347, col: 123, offset: 10481},
|
|
val: "}",
|
|
ignoreCase: false,
|
|
want: "\"}\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 349, col: 5, offset: 10540},
|
|
run: (*parser).callonSelectObject20,
|
|
expr: &seqExpr{
|
|
pos: position{line: 349, col: 5, offset: 10540},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 349, col: 5, offset: 10540},
|
|
val: "{",
|
|
ignoreCase: false,
|
|
want: "\"{\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 349, col: 9, offset: 10544},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 349, col: 12, offset: 10547},
|
|
val: "}",
|
|
ignoreCase: false,
|
|
want: "\"}\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectObjectField",
|
|
pos: position{line: 356, col: 1, offset: 10694},
|
|
expr: &actionExpr{
|
|
pos: position{line: 356, col: 22, offset: 10715},
|
|
run: (*parser).callonSelectObjectField1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 356, col: 22, offset: 10715},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 356, col: 22, offset: 10715},
|
|
label: "name",
|
|
expr: &choiceExpr{
|
|
pos: position{line: 356, col: 28, offset: 10721},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 356, col: 28, offset: 10721},
|
|
name: "Identifier",
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 356, col: 41, offset: 10734},
|
|
run: (*parser).callonSelectObjectField6,
|
|
expr: &seqExpr{
|
|
pos: position{line: 356, col: 41, offset: 10734},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 356, col: 41, offset: 10734},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 356, col: 46, offset: 10739},
|
|
label: "key",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 356, col: 50, offset: 10743},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 356, col: 61, offset: 10754},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 356, col: 87, offset: 10780},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 356, col: 90, offset: 10783},
|
|
val: ":",
|
|
ignoreCase: false,
|
|
want: "\":\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 356, col: 94, offset: 10787},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 356, col: 97, offset: 10790},
|
|
label: "selectItem",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 356, col: 108, offset: 10801},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectProperty",
|
|
pos: position{line: 362, col: 1, offset: 10913},
|
|
expr: &actionExpr{
|
|
pos: position{line: 362, col: 19, offset: 10931},
|
|
run: (*parser).callonSelectProperty1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 362, col: 19, offset: 10931},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 362, col: 19, offset: 10931},
|
|
label: "name",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 362, col: 24, offset: 10936},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 362, col: 35, offset: 10947},
|
|
label: "path",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 362, col: 40, offset: 10952},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 362, col: 41, offset: 10953},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 362, col: 41, offset: 10953},
|
|
name: "DotFieldAccess",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 362, col: 58, offset: 10970},
|
|
name: "ArrayFieldAccess",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectItemWithAlias",
|
|
pos: position{line: 366, col: 1, offset: 11061},
|
|
expr: &actionExpr{
|
|
pos: position{line: 366, col: 24, offset: 11084},
|
|
run: (*parser).callonSelectItemWithAlias1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 366, col: 24, offset: 11084},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 366, col: 24, offset: 11084},
|
|
label: "selectItem",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 366, col: 35, offset: 11095},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 366, col: 46, offset: 11106},
|
|
label: "asClause",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 366, col: 55, offset: 11115},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 366, col: 55, offset: 11115},
|
|
name: "AsClause",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectItem",
|
|
pos: position{line: 374, col: 1, offset: 11282},
|
|
expr: &actionExpr{
|
|
pos: position{line: 374, col: 15, offset: 11296},
|
|
run: (*parser).callonSelectItem1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 374, col: 15, offset: 11296},
|
|
label: "selectItem",
|
|
expr: &choiceExpr{
|
|
pos: position{line: 374, col: 27, offset: 11308},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 374, col: 27, offset: 11308},
|
|
name: "SubQuerySelectItem",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 374, col: 48, offset: 11329},
|
|
name: "Literal",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 374, col: 58, offset: 11339},
|
|
name: "FunctionCall",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 374, col: 73, offset: 11354},
|
|
name: "SelectArray",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 374, col: 87, offset: 11368},
|
|
name: "SelectObject",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 374, col: 102, offset: 11383},
|
|
name: "SelectProperty",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AsClause",
|
|
pos: position{line: 394, col: 1, offset: 11908},
|
|
expr: &actionExpr{
|
|
pos: position{line: 394, col: 13, offset: 11920},
|
|
run: (*parser).callonAsClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 394, col: 13, offset: 11920},
|
|
exprs: []any{
|
|
&zeroOrOneExpr{
|
|
pos: position{line: 394, col: 13, offset: 11920},
|
|
expr: &seqExpr{
|
|
pos: position{line: 394, col: 14, offset: 11921},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 394, col: 14, offset: 11921},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 394, col: 17, offset: 11924},
|
|
name: "As",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 394, col: 22, offset: 11929},
|
|
name: "ws",
|
|
},
|
|
¬Expr{
|
|
pos: position{line: 394, col: 25, offset: 11932},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 394, col: 26, offset: 11933},
|
|
name: "ExcludedKeywords",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 394, col: 43, offset: 11950},
|
|
label: "alias",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 394, col: 49, offset: 11956},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ExcludedKeywords",
|
|
pos: position{line: 398, col: 1, offset: 11994},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 398, col: 21, offset: 12014},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 21, offset: 12014},
|
|
name: "Select",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 30, offset: 12023},
|
|
name: "Top",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 36, offset: 12029},
|
|
name: "As",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 41, offset: 12034},
|
|
name: "From",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 48, offset: 12041},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 53, offset: 12046},
|
|
name: "Join",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 60, offset: 12053},
|
|
name: "Exists",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 69, offset: 12062},
|
|
name: "Where",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 77, offset: 12070},
|
|
name: "And",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 83, offset: 12076},
|
|
name: "Or",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 88, offset: 12081},
|
|
name: "Not",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 94, offset: 12087},
|
|
name: "GroupBy",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 104, offset: 12097},
|
|
name: "OrderBy",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 398, col: 114, offset: 12107},
|
|
name: "Offset",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "DotFieldAccess",
|
|
pos: position{line: 400, col: 1, offset: 12115},
|
|
expr: &actionExpr{
|
|
pos: position{line: 400, col: 19, offset: 12133},
|
|
run: (*parser).callonDotFieldAccess1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 400, col: 19, offset: 12133},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 400, col: 19, offset: 12133},
|
|
val: ".",
|
|
ignoreCase: false,
|
|
want: "\".\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 400, col: 23, offset: 12137},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 400, col: 26, offset: 12140},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayFieldAccess",
|
|
pos: position{line: 404, col: 1, offset: 12175},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 404, col: 21, offset: 12195},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 404, col: 21, offset: 12195},
|
|
run: (*parser).callonArrayFieldAccess2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 404, col: 21, offset: 12195},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 404, col: 21, offset: 12195},
|
|
val: "[\"",
|
|
ignoreCase: false,
|
|
want: "\"[\\\"\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 404, col: 27, offset: 12201},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 404, col: 30, offset: 12204},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 404, col: 41, offset: 12215},
|
|
val: "\"]",
|
|
ignoreCase: false,
|
|
want: "\"\\\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 405, col: 5, offset: 12244},
|
|
run: (*parser).callonArrayFieldAccess8,
|
|
expr: &seqExpr{
|
|
pos: position{line: 405, col: 5, offset: 12244},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 405, col: 5, offset: 12244},
|
|
val: "[",
|
|
ignoreCase: false,
|
|
want: "\"[\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 405, col: 9, offset: 12248},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 405, col: 12, offset: 12251},
|
|
name: "Integer",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 405, col: 20, offset: 12259},
|
|
val: "]",
|
|
ignoreCase: false,
|
|
want: "\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 406, col: 5, offset: 12306},
|
|
run: (*parser).callonArrayFieldAccess14,
|
|
expr: &seqExpr{
|
|
pos: position{line: 406, col: 5, offset: 12306},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 406, col: 5, offset: 12306},
|
|
val: "[",
|
|
ignoreCase: false,
|
|
want: "\"[\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 406, col: 9, offset: 12310},
|
|
label: "id",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 406, col: 12, offset: 12313},
|
|
name: "ParameterConstant",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 406, col: 30, offset: 12331},
|
|
val: "]",
|
|
ignoreCase: false,
|
|
want: "\"]\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Identifier",
|
|
pos: position{line: 408, col: 1, offset: 12389},
|
|
expr: &actionExpr{
|
|
pos: position{line: 408, col: 15, offset: 12403},
|
|
run: (*parser).callonIdentifier1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 408, col: 15, offset: 12403},
|
|
exprs: []any{
|
|
&charClassMatcher{
|
|
pos: position{line: 408, col: 15, offset: 12403},
|
|
val: "[a-zA-Z_]",
|
|
chars: []rune{'_'},
|
|
ranges: []rune{'a', 'z', 'A', 'Z'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
&zeroOrMoreExpr{
|
|
pos: position{line: 408, col: 24, offset: 12412},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 408, col: 24, offset: 12412},
|
|
val: "[a-zA-Z0-9_]",
|
|
chars: []rune{'_'},
|
|
ranges: []rune{'a', 'z', 'A', 'Z', '0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Condition",
|
|
pos: position{line: 412, col: 1, offset: 12462},
|
|
expr: &actionExpr{
|
|
pos: position{line: 412, col: 14, offset: 12475},
|
|
run: (*parser).callonCondition1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 412, col: 14, offset: 12475},
|
|
label: "expression",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 412, col: 25, offset: 12486},
|
|
name: "OrExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrExpression",
|
|
pos: position{line: 416, col: 1, offset: 12531},
|
|
expr: &actionExpr{
|
|
pos: position{line: 416, col: 17, offset: 12547},
|
|
run: (*parser).callonOrExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 416, col: 17, offset: 12547},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 416, col: 17, offset: 12547},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 416, col: 21, offset: 12551},
|
|
name: "AndExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 416, col: 35, offset: 12565},
|
|
label: "ex2",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 416, col: 39, offset: 12569},
|
|
expr: &actionExpr{
|
|
pos: position{line: 416, col: 40, offset: 12570},
|
|
run: (*parser).callonOrExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 416, col: 40, offset: 12570},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 416, col: 40, offset: 12570},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 416, col: 43, offset: 12573},
|
|
name: "Or",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 416, col: 46, offset: 12576},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 416, col: 49, offset: 12579},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 416, col: 52, offset: 12582},
|
|
name: "AndExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AndExpression",
|
|
pos: position{line: 420, col: 1, offset: 12695},
|
|
expr: &actionExpr{
|
|
pos: position{line: 420, col: 18, offset: 12712},
|
|
run: (*parser).callonAndExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 420, col: 18, offset: 12712},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 420, col: 18, offset: 12712},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 420, col: 22, offset: 12716},
|
|
name: "ComparisonExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 420, col: 43, offset: 12737},
|
|
label: "ex2",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 420, col: 47, offset: 12741},
|
|
expr: &actionExpr{
|
|
pos: position{line: 420, col: 48, offset: 12742},
|
|
run: (*parser).callonAndExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 420, col: 48, offset: 12742},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 420, col: 48, offset: 12742},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 420, col: 51, offset: 12745},
|
|
name: "And",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 420, col: 55, offset: 12749},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 420, col: 58, offset: 12752},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 420, col: 61, offset: 12755},
|
|
name: "ComparisonExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ComparisonExpression",
|
|
pos: position{line: 424, col: 1, offset: 12876},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 424, col: 25, offset: 12900},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 424, col: 25, offset: 12900},
|
|
run: (*parser).callonComparisonExpression2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 424, col: 25, offset: 12900},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 25, offset: 12900},
|
|
label: "left",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 424, col: 30, offset: 12905},
|
|
name: "AddSubExpression",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 424, col: 47, offset: 12922},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 50, offset: 12925},
|
|
label: "op",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 424, col: 53, offset: 12928},
|
|
name: "ComparisonOperator",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 424, col: 72, offset: 12947},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 424, col: 75, offset: 12950},
|
|
label: "right",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 424, col: 81, offset: 12956},
|
|
name: "AddSubExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 426, col: 5, offset: 13069},
|
|
run: (*parser).callonComparisonExpression12,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 426, col: 5, offset: 13069},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 426, col: 8, offset: 13072},
|
|
name: "AddSubExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AddSubExpression",
|
|
pos: position{line: 428, col: 1, offset: 13109},
|
|
expr: &actionExpr{
|
|
pos: position{line: 428, col: 21, offset: 13129},
|
|
run: (*parser).callonAddSubExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 428, col: 21, offset: 13129},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 21, offset: 13129},
|
|
label: "left",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 428, col: 26, offset: 13134},
|
|
name: "MulDivExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 43, offset: 13151},
|
|
label: "operations",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 428, col: 54, offset: 13162},
|
|
expr: &actionExpr{
|
|
pos: position{line: 428, col: 55, offset: 13163},
|
|
run: (*parser).callonAddSubExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 428, col: 55, offset: 13163},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 428, col: 55, offset: 13163},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 58, offset: 13166},
|
|
label: "op",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 428, col: 61, offset: 13169},
|
|
name: "AddOrSubtractOperation",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 428, col: 84, offset: 13192},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 428, col: 87, offset: 13195},
|
|
label: "right",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 428, col: 93, offset: 13201},
|
|
name: "MulDivExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MulDivExpression",
|
|
pos: position{line: 432, col: 1, offset: 13314},
|
|
expr: &actionExpr{
|
|
pos: position{line: 432, col: 21, offset: 13334},
|
|
run: (*parser).callonMulDivExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 432, col: 21, offset: 13334},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 432, col: 21, offset: 13334},
|
|
label: "left",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 432, col: 26, offset: 13339},
|
|
name: "SelectItemWithParentheses",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 432, col: 52, offset: 13365},
|
|
label: "operations",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 432, col: 63, offset: 13376},
|
|
expr: &actionExpr{
|
|
pos: position{line: 432, col: 64, offset: 13377},
|
|
run: (*parser).callonMulDivExpression7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 432, col: 64, offset: 13377},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 432, col: 64, offset: 13377},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 432, col: 67, offset: 13380},
|
|
label: "op",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 432, col: 70, offset: 13383},
|
|
name: "MultiplyOrDivideOperation",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 432, col: 96, offset: 13409},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 432, col: 99, offset: 13412},
|
|
label: "right",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 432, col: 105, offset: 13418},
|
|
name: "SelectItemWithParentheses",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SelectItemWithParentheses",
|
|
pos: position{line: 436, col: 1, offset: 13540},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 436, col: 30, offset: 13569},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 436, col: 30, offset: 13569},
|
|
run: (*parser).callonSelectItemWithParentheses2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 436, col: 30, offset: 13569},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 436, col: 30, offset: 13569},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 436, col: 34, offset: 13573},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 436, col: 37, offset: 13576},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 436, col: 40, offset: 13579},
|
|
name: "OrExpression",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 436, col: 53, offset: 13592},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 436, col: 56, offset: 13595},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 437, col: 7, offset: 13624},
|
|
run: (*parser).callonSelectItemWithParentheses10,
|
|
expr: &seqExpr{
|
|
pos: position{line: 437, col: 7, offset: 13624},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 437, col: 7, offset: 13624},
|
|
label: "inv",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 437, col: 11, offset: 13628},
|
|
expr: &seqExpr{
|
|
pos: position{line: 437, col: 12, offset: 13629},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 437, col: 12, offset: 13629},
|
|
name: "Not",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 437, col: 16, offset: 13633},
|
|
name: "ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 437, col: 21, offset: 13638},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 437, col: 24, offset: 13641},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 444, col: 5, offset: 13792},
|
|
run: (*parser).callonSelectItemWithParentheses19,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 444, col: 5, offset: 13792},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 444, col: 8, offset: 13795},
|
|
name: "BooleanLiteral",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderByClause",
|
|
pos: position{line: 446, col: 1, offset: 13830},
|
|
expr: &actionExpr{
|
|
pos: position{line: 446, col: 18, offset: 13847},
|
|
run: (*parser).callonOrderByClause1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 446, col: 18, offset: 13847},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 446, col: 18, offset: 13847},
|
|
name: "OrderBy",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 446, col: 26, offset: 13855},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 446, col: 29, offset: 13858},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 446, col: 33, offset: 13862},
|
|
name: "OrderExpression",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 446, col: 49, offset: 13878},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 446, col: 56, offset: 13885},
|
|
expr: &actionExpr{
|
|
pos: position{line: 446, col: 57, offset: 13886},
|
|
run: (*parser).callonOrderByClause9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 446, col: 57, offset: 13886},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 446, col: 57, offset: 13886},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 446, col: 60, offset: 13889},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 446, col: 64, offset: 13893},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 446, col: 67, offset: 13896},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 446, col: 70, offset: 13899},
|
|
name: "OrderExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderExpression",
|
|
pos: position{line: 450, col: 1, offset: 13983},
|
|
expr: &actionExpr{
|
|
pos: position{line: 450, col: 20, offset: 14002},
|
|
run: (*parser).callonOrderExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 450, col: 20, offset: 14002},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 450, col: 20, offset: 14002},
|
|
label: "field",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 450, col: 26, offset: 14008},
|
|
name: "SelectProperty",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 450, col: 41, offset: 14023},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 450, col: 44, offset: 14026},
|
|
label: "order",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 450, col: 50, offset: 14032},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 450, col: 50, offset: 14032},
|
|
name: "OrderDirection",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderDirection",
|
|
pos: position{line: 454, col: 1, offset: 14098},
|
|
expr: &actionExpr{
|
|
pos: position{line: 454, col: 19, offset: 14116},
|
|
run: (*parser).callonOrderDirection1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 454, col: 20, offset: 14117},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 454, col: 20, offset: 14117},
|
|
val: "asc",
|
|
ignoreCase: true,
|
|
want: "\"ASC\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 454, col: 29, offset: 14126},
|
|
val: "desc",
|
|
ignoreCase: true,
|
|
want: "\"DESC\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Select",
|
|
pos: position{line: 462, col: 1, offset: 14287},
|
|
expr: &litMatcher{
|
|
pos: position{line: 462, col: 11, offset: 14297},
|
|
val: "select",
|
|
ignoreCase: true,
|
|
want: "\"SELECT\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Top",
|
|
pos: position{line: 464, col: 1, offset: 14308},
|
|
expr: &litMatcher{
|
|
pos: position{line: 464, col: 8, offset: 14315},
|
|
val: "top",
|
|
ignoreCase: true,
|
|
want: "\"TOP\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "As",
|
|
pos: position{line: 466, col: 1, offset: 14323},
|
|
expr: &litMatcher{
|
|
pos: position{line: 466, col: 7, offset: 14329},
|
|
val: "as",
|
|
ignoreCase: true,
|
|
want: "\"AS\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "From",
|
|
pos: position{line: 468, col: 1, offset: 14336},
|
|
expr: &litMatcher{
|
|
pos: position{line: 468, col: 9, offset: 14344},
|
|
val: "from",
|
|
ignoreCase: true,
|
|
want: "\"FROM\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "In",
|
|
pos: position{line: 470, col: 1, offset: 14353},
|
|
expr: &litMatcher{
|
|
pos: position{line: 470, col: 7, offset: 14359},
|
|
val: "in",
|
|
ignoreCase: true,
|
|
want: "\"IN\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Join",
|
|
pos: position{line: 472, col: 1, offset: 14366},
|
|
expr: &litMatcher{
|
|
pos: position{line: 472, col: 9, offset: 14374},
|
|
val: "join",
|
|
ignoreCase: true,
|
|
want: "\"JOIN\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Exists",
|
|
pos: position{line: 474, col: 1, offset: 14383},
|
|
expr: &litMatcher{
|
|
pos: position{line: 474, col: 11, offset: 14393},
|
|
val: "exists",
|
|
ignoreCase: true,
|
|
want: "\"EXISTS\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Where",
|
|
pos: position{line: 476, col: 1, offset: 14404},
|
|
expr: &litMatcher{
|
|
pos: position{line: 476, col: 10, offset: 14413},
|
|
val: "where",
|
|
ignoreCase: true,
|
|
want: "\"WHERE\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "And",
|
|
pos: position{line: 478, col: 1, offset: 14423},
|
|
expr: &litMatcher{
|
|
pos: position{line: 478, col: 8, offset: 14430},
|
|
val: "and",
|
|
ignoreCase: true,
|
|
want: "\"AND\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "Or",
|
|
pos: position{line: 480, col: 1, offset: 14438},
|
|
expr: &seqExpr{
|
|
pos: position{line: 480, col: 7, offset: 14444},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 480, col: 7, offset: 14444},
|
|
val: "or",
|
|
ignoreCase: true,
|
|
want: "\"OR\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 480, col: 13, offset: 14450},
|
|
name: "wss",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Not",
|
|
pos: position{line: 482, col: 1, offset: 14455},
|
|
expr: &litMatcher{
|
|
pos: position{line: 482, col: 8, offset: 14462},
|
|
val: "not",
|
|
ignoreCase: true,
|
|
want: "\"NOT\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "GroupBy",
|
|
pos: position{line: 484, col: 1, offset: 14470},
|
|
expr: &seqExpr{
|
|
pos: position{line: 484, col: 12, offset: 14481},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 484, col: 12, offset: 14481},
|
|
val: "group",
|
|
ignoreCase: true,
|
|
want: "\"GROUP\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 484, col: 21, offset: 14490},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 484, col: 24, offset: 14493},
|
|
val: "by",
|
|
ignoreCase: true,
|
|
want: "\"BY\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "OrderBy",
|
|
pos: position{line: 486, col: 1, offset: 14500},
|
|
expr: &seqExpr{
|
|
pos: position{line: 486, col: 12, offset: 14511},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 486, col: 12, offset: 14511},
|
|
val: "order",
|
|
ignoreCase: true,
|
|
want: "\"ORDER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 486, col: 21, offset: 14520},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 486, col: 24, offset: 14523},
|
|
val: "by",
|
|
ignoreCase: true,
|
|
want: "\"BY\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Offset",
|
|
pos: position{line: 488, col: 1, offset: 14530},
|
|
expr: &litMatcher{
|
|
pos: position{line: 488, col: 11, offset: 14540},
|
|
val: "offset",
|
|
ignoreCase: true,
|
|
want: "\"OFFSET\"i",
|
|
},
|
|
},
|
|
{
|
|
name: "ComparisonOperator",
|
|
pos: position{line: 490, col: 1, offset: 14551},
|
|
expr: &actionExpr{
|
|
pos: position{line: 490, col: 23, offset: 14573},
|
|
run: (*parser).callonComparisonOperator1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 490, col: 24, offset: 14574},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 24, offset: 14574},
|
|
val: "<=",
|
|
ignoreCase: false,
|
|
want: "\"<=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 31, offset: 14581},
|
|
val: ">=",
|
|
ignoreCase: false,
|
|
want: "\">=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 38, offset: 14588},
|
|
val: "=",
|
|
ignoreCase: false,
|
|
want: "\"=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 44, offset: 14594},
|
|
val: "!=",
|
|
ignoreCase: false,
|
|
want: "\"!=\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 51, offset: 14601},
|
|
val: "<",
|
|
ignoreCase: false,
|
|
want: "\"<\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 490, col: 57, offset: 14607},
|
|
val: ">",
|
|
ignoreCase: false,
|
|
want: "\">\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AddOrSubtractOperation",
|
|
pos: position{line: 494, col: 1, offset: 14648},
|
|
expr: &actionExpr{
|
|
pos: position{line: 494, col: 27, offset: 14674},
|
|
run: (*parser).callonAddOrSubtractOperation1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 494, col: 28, offset: 14675},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 28, offset: 14675},
|
|
val: "+",
|
|
ignoreCase: false,
|
|
want: "\"+\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 494, col: 34, offset: 14681},
|
|
val: "-",
|
|
ignoreCase: false,
|
|
want: "\"-\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MultiplyOrDivideOperation",
|
|
pos: position{line: 496, col: 1, offset: 14718},
|
|
expr: &actionExpr{
|
|
pos: position{line: 496, col: 30, offset: 14747},
|
|
run: (*parser).callonMultiplyOrDivideOperation1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 496, col: 31, offset: 14748},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 496, col: 31, offset: 14748},
|
|
val: "*",
|
|
ignoreCase: false,
|
|
want: "\"*\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 496, col: 37, offset: 14754},
|
|
val: "/",
|
|
ignoreCase: false,
|
|
want: "\"/\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Literal",
|
|
pos: position{line: 498, col: 1, offset: 14791},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 498, col: 12, offset: 14802},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 498, col: 12, offset: 14802},
|
|
name: "FloatLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 498, col: 27, offset: 14817},
|
|
name: "IntegerLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 498, col: 44, offset: 14834},
|
|
name: "StringLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 498, col: 60, offset: 14850},
|
|
name: "BooleanLiteral",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 498, col: 77, offset: 14867},
|
|
name: "ParameterConstant",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 498, col: 97, offset: 14887},
|
|
name: "NullConstant",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ParameterConstant",
|
|
pos: position{line: 500, col: 1, offset: 14901},
|
|
expr: &actionExpr{
|
|
pos: position{line: 500, col: 22, offset: 14922},
|
|
run: (*parser).callonParameterConstant1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 500, col: 22, offset: 14922},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 500, col: 22, offset: 14922},
|
|
val: "@",
|
|
ignoreCase: false,
|
|
want: "\"@\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 500, col: 26, offset: 14926},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "NullConstant",
|
|
pos: position{line: 503, col: 1, offset: 15042},
|
|
expr: &actionExpr{
|
|
pos: position{line: 503, col: 17, offset: 15058},
|
|
run: (*parser).callonNullConstant1,
|
|
expr: &litMatcher{
|
|
pos: position{line: 503, col: 17, offset: 15058},
|
|
val: "null",
|
|
ignoreCase: true,
|
|
want: "\"null\"i",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IntegerLiteral",
|
|
pos: position{line: 507, col: 1, offset: 15116},
|
|
expr: &actionExpr{
|
|
pos: position{line: 507, col: 19, offset: 15134},
|
|
run: (*parser).callonIntegerLiteral1,
|
|
expr: &labeledExpr{
|
|
pos: position{line: 507, col: 19, offset: 15134},
|
|
label: "number",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 507, col: 26, offset: 15141},
|
|
name: "Integer",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringLiteral",
|
|
pos: position{line: 510, col: 1, offset: 15242},
|
|
expr: &actionExpr{
|
|
pos: position{line: 510, col: 18, offset: 15259},
|
|
run: (*parser).callonStringLiteral1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 510, col: 18, offset: 15259},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 510, col: 18, offset: 15259},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 510, col: 23, offset: 15264},
|
|
label: "chars",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 510, col: 29, offset: 15270},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 510, col: 29, offset: 15270},
|
|
name: "StringCharacter",
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 510, col: 46, offset: 15287},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "FloatLiteral",
|
|
pos: position{line: 513, col: 1, offset: 15405},
|
|
expr: &actionExpr{
|
|
pos: position{line: 513, col: 17, offset: 15421},
|
|
run: (*parser).callonFloatLiteral1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 513, col: 17, offset: 15421},
|
|
exprs: []any{
|
|
&oneOrMoreExpr{
|
|
pos: position{line: 513, col: 17, offset: 15421},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 513, col: 17, offset: 15421},
|
|
val: "[0-9]",
|
|
ranges: []rune{'0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 513, col: 23, offset: 15427},
|
|
val: ".",
|
|
ignoreCase: false,
|
|
want: "\".\"",
|
|
},
|
|
&oneOrMoreExpr{
|
|
pos: position{line: 513, col: 26, offset: 15430},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 513, col: 26, offset: 15430},
|
|
val: "[0-9]",
|
|
ranges: []rune{'0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "BooleanLiteral",
|
|
pos: position{line: 517, col: 1, offset: 15586},
|
|
expr: &actionExpr{
|
|
pos: position{line: 517, col: 19, offset: 15604},
|
|
run: (*parser).callonBooleanLiteral1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 517, col: 20, offset: 15605},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 517, col: 20, offset: 15605},
|
|
val: "true",
|
|
ignoreCase: true,
|
|
want: "\"true\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 517, col: 30, offset: 15615},
|
|
val: "false",
|
|
ignoreCase: true,
|
|
want: "\"false\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "FunctionCall",
|
|
pos: position{line: 522, col: 1, offset: 15770},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 522, col: 17, offset: 15786},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 522, col: 17, offset: 15786},
|
|
name: "UDFFunction",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 523, col: 7, offset: 15804},
|
|
name: "StringFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 524, col: 7, offset: 15826},
|
|
name: "TypeCheckingFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 525, col: 7, offset: 15854},
|
|
name: "ArrayFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 526, col: 7, offset: 15875},
|
|
name: "ConditionalFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 527, col: 7, offset: 15902},
|
|
name: "InFunction",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 528, col: 7, offset: 15919},
|
|
name: "AggregateFunctions",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 529, col: 7, offset: 15944},
|
|
name: "MathFunctions",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "UDFFunction",
|
|
pos: position{line: 531, col: 1, offset: 15959},
|
|
expr: &actionExpr{
|
|
pos: position{line: 531, col: 16, offset: 15974},
|
|
run: (*parser).callonUDFFunction1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 531, col: 16, offset: 15974},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 531, col: 16, offset: 15974},
|
|
val: "udf",
|
|
ignoreCase: true,
|
|
want: "\"udf\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 531, col: 23, offset: 15981},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 531, col: 26, offset: 15984},
|
|
val: ".",
|
|
ignoreCase: false,
|
|
want: "\".\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 531, col: 30, offset: 15988},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 531, col: 33, offset: 15991},
|
|
label: "functionName",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 531, col: 46, offset: 16004},
|
|
name: "Identifier",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 531, col: 57, offset: 16015},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 531, col: 60, offset: 16018},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 531, col: 64, offset: 16022},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 531, col: 67, offset: 16025},
|
|
label: "arguments",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 531, col: 77, offset: 16035},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 531, col: 77, offset: 16035},
|
|
name: "UDFArgumentList",
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 531, col: 94, offset: 16052},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 531, col: 97, offset: 16055},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "UDFArgumentList",
|
|
pos: position{line: 538, col: 1, offset: 16222},
|
|
expr: &actionExpr{
|
|
pos: position{line: 538, col: 20, offset: 16241},
|
|
run: (*parser).callonUDFArgumentList1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 538, col: 20, offset: 16241},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 538, col: 20, offset: 16241},
|
|
label: "arg1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 538, col: 25, offset: 16246},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 538, col: 36, offset: 16257},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 538, col: 43, offset: 16264},
|
|
expr: &actionExpr{
|
|
pos: position{line: 538, col: 44, offset: 16265},
|
|
run: (*parser).callonUDFArgumentList7,
|
|
expr: &seqExpr{
|
|
pos: position{line: 538, col: 44, offset: 16265},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 538, col: 44, offset: 16265},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 538, col: 47, offset: 16268},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 538, col: 51, offset: 16272},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 538, col: 54, offset: 16275},
|
|
label: "arg",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 538, col: 58, offset: 16279},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringFunctions",
|
|
pos: position{line: 545, col: 1, offset: 16457},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 545, col: 20, offset: 16476},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 545, col: 20, offset: 16476},
|
|
name: "StringEqualsExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 546, col: 7, offset: 16505},
|
|
name: "ToStringExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 547, col: 7, offset: 16530},
|
|
name: "ConcatExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 548, col: 7, offset: 16553},
|
|
name: "ThreeArgumentStringFunctionExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 549, col: 7, offset: 16597},
|
|
name: "UpperExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 550, col: 7, offset: 16619},
|
|
name: "LowerExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 551, col: 7, offset: 16641},
|
|
name: "LeftExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 552, col: 7, offset: 16662},
|
|
name: "LengthExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 553, col: 7, offset: 16685},
|
|
name: "LTrimExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 554, col: 7, offset: 16707},
|
|
name: "ReplaceExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 555, col: 7, offset: 16731},
|
|
name: "ReplicateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 556, col: 7, offset: 16757},
|
|
name: "ReverseExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 557, col: 7, offset: 16781},
|
|
name: "RightExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 558, col: 7, offset: 16803},
|
|
name: "RTrimExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 559, col: 7, offset: 16825},
|
|
name: "SubstringExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 560, col: 7, offset: 16851},
|
|
name: "TrimExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "TypeCheckingFunctions",
|
|
pos: position{line: 562, col: 1, offset: 16867},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 562, col: 26, offset: 16892},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 562, col: 26, offset: 16892},
|
|
name: "IsDefined",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 563, col: 7, offset: 16908},
|
|
name: "IsArray",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 564, col: 7, offset: 16922},
|
|
name: "IsBool",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 565, col: 7, offset: 16935},
|
|
name: "IsFiniteNumber",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 566, col: 7, offset: 16956},
|
|
name: "IsInteger",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 567, col: 7, offset: 16972},
|
|
name: "IsNull",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 568, col: 7, offset: 16985},
|
|
name: "IsNumber",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 569, col: 7, offset: 17000},
|
|
name: "IsObject",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 570, col: 7, offset: 17015},
|
|
name: "IsPrimitive",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 571, col: 7, offset: 17033},
|
|
name: "IsString",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AggregateFunctions",
|
|
pos: position{line: 573, col: 1, offset: 17043},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 573, col: 23, offset: 17065},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 573, col: 23, offset: 17065},
|
|
name: "AvgAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 574, col: 7, offset: 17094},
|
|
name: "CountAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 575, col: 7, offset: 17125},
|
|
name: "MaxAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 576, col: 7, offset: 17154},
|
|
name: "MinAggregateExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 577, col: 7, offset: 17183},
|
|
name: "SumAggregateExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayFunctions",
|
|
pos: position{line: 579, col: 1, offset: 17207},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 579, col: 19, offset: 17225},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 579, col: 19, offset: 17225},
|
|
name: "ArrayConcatExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 580, col: 7, offset: 17253},
|
|
name: "ArrayContainsExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 581, col: 7, offset: 17283},
|
|
name: "ArrayContainsAnyExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 582, col: 7, offset: 17316},
|
|
name: "ArrayContainsAllExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 583, col: 7, offset: 17349},
|
|
name: "ArrayLengthExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 584, col: 7, offset: 17377},
|
|
name: "ArraySliceExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 585, col: 7, offset: 17404},
|
|
name: "SetIntersectExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 586, col: 7, offset: 17433},
|
|
name: "SetUnionExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ConditionalFunctions",
|
|
pos: position{line: 588, col: 1, offset: 17453},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 588, col: 25, offset: 17477},
|
|
name: "IifExpression",
|
|
},
|
|
},
|
|
{
|
|
name: "MathFunctions",
|
|
pos: position{line: 590, col: 1, offset: 17492},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 590, col: 18, offset: 17509},
|
|
alternatives: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 590, col: 18, offset: 17509},
|
|
name: "MathAbsExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 591, col: 7, offset: 17533},
|
|
name: "MathAcosExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 592, col: 7, offset: 17558},
|
|
name: "MathAsinExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 593, col: 7, offset: 17583},
|
|
name: "MathAtanExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 594, col: 7, offset: 17608},
|
|
name: "MathCeilingExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 595, col: 7, offset: 17636},
|
|
name: "MathCosExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 596, col: 7, offset: 17660},
|
|
name: "MathCotExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 597, col: 7, offset: 17684},
|
|
name: "MathDegreesExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 598, col: 7, offset: 17712},
|
|
name: "MathExpExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 599, col: 7, offset: 17736},
|
|
name: "MathFloorExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 600, col: 7, offset: 17762},
|
|
name: "MathIntBitNotExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 601, col: 7, offset: 17792},
|
|
name: "MathLog10Expression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 602, col: 7, offset: 17818},
|
|
name: "MathRadiansExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 603, col: 7, offset: 17846},
|
|
name: "MathRoundExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 604, col: 7, offset: 17872},
|
|
name: "MathSignExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 605, col: 7, offset: 17897},
|
|
name: "MathSinExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 606, col: 7, offset: 17921},
|
|
name: "MathSqrtExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 607, col: 7, offset: 17946},
|
|
name: "MathSquareExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 608, col: 7, offset: 17973},
|
|
name: "MathTanExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 609, col: 7, offset: 17997},
|
|
name: "MathTruncExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 610, col: 7, offset: 18023},
|
|
name: "MathAtn2Expression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 611, col: 7, offset: 18048},
|
|
name: "MathIntAddExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 612, col: 7, offset: 18075},
|
|
name: "MathIntBitAndExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 613, col: 7, offset: 18105},
|
|
name: "MathIntBitLeftShiftExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 614, col: 7, offset: 18141},
|
|
name: "MathIntBitOrExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 615, col: 7, offset: 18170},
|
|
name: "MathIntBitRightShiftExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 616, col: 7, offset: 18207},
|
|
name: "MathIntBitXorExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 617, col: 7, offset: 18237},
|
|
name: "MathIntDivExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 618, col: 7, offset: 18264},
|
|
name: "MathIntModExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 619, col: 7, offset: 18291},
|
|
name: "MathIntMulExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 620, col: 7, offset: 18318},
|
|
name: "MathIntSubExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 621, col: 7, offset: 18345},
|
|
name: "MathPowerExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 622, col: 7, offset: 18371},
|
|
name: "MathLogExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 623, col: 7, offset: 18395},
|
|
name: "MathNumberBinExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 624, col: 7, offset: 18425},
|
|
name: "MathPiExpression",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 625, col: 7, offset: 18448},
|
|
name: "MathRandExpression",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "UpperExpression",
|
|
pos: position{line: 627, col: 1, offset: 18468},
|
|
expr: &actionExpr{
|
|
pos: position{line: 627, col: 20, offset: 18487},
|
|
run: (*parser).callonUpperExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 627, col: 20, offset: 18487},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 627, col: 20, offset: 18487},
|
|
val: "upper",
|
|
ignoreCase: true,
|
|
want: "\"UPPER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 627, col: 29, offset: 18496},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 627, col: 32, offset: 18499},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 627, col: 36, offset: 18503},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 627, col: 39, offset: 18506},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 627, col: 50, offset: 18517},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LowerExpression",
|
|
pos: position{line: 631, col: 1, offset: 18602},
|
|
expr: &actionExpr{
|
|
pos: position{line: 631, col: 20, offset: 18621},
|
|
run: (*parser).callonLowerExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 631, col: 20, offset: 18621},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 631, col: 20, offset: 18621},
|
|
val: "lower",
|
|
ignoreCase: true,
|
|
want: "\"LOWER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 631, col: 29, offset: 18630},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 631, col: 32, offset: 18633},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 631, col: 36, offset: 18637},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 631, col: 39, offset: 18640},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 631, col: 50, offset: 18651},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringEqualsExpression",
|
|
pos: position{line: 635, col: 1, offset: 18736},
|
|
expr: &actionExpr{
|
|
pos: position{line: 635, col: 27, offset: 18762},
|
|
run: (*parser).callonStringEqualsExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 635, col: 27, offset: 18762},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 635, col: 27, offset: 18762},
|
|
val: "stringequals",
|
|
ignoreCase: true,
|
|
want: "\"STRINGEQUALS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 635, col: 43, offset: 18778},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 635, col: 46, offset: 18781},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 635, col: 50, offset: 18785},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 635, col: 53, offset: 18788},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 635, col: 57, offset: 18792},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 635, col: 68, offset: 18803},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 635, col: 71, offset: 18806},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 635, col: 75, offset: 18810},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 635, col: 78, offset: 18813},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 635, col: 82, offset: 18817},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 635, col: 93, offset: 18828},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 635, col: 96, offset: 18831},
|
|
label: "ignoreCase",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 635, col: 107, offset: 18842},
|
|
expr: &actionExpr{
|
|
pos: position{line: 635, col: 108, offset: 18843},
|
|
run: (*parser).callonStringEqualsExpression17,
|
|
expr: &seqExpr{
|
|
pos: position{line: 635, col: 108, offset: 18843},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 635, col: 108, offset: 18843},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 635, col: 112, offset: 18847},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 635, col: 115, offset: 18850},
|
|
label: "boolean",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 635, col: 123, offset: 18858},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 635, col: 160, offset: 18895},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ToStringExpression",
|
|
pos: position{line: 639, col: 1, offset: 19005},
|
|
expr: &actionExpr{
|
|
pos: position{line: 639, col: 23, offset: 19027},
|
|
run: (*parser).callonToStringExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 639, col: 23, offset: 19027},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 23, offset: 19027},
|
|
val: "tostring",
|
|
ignoreCase: true,
|
|
want: "\"TOSTRING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 35, offset: 19039},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 38, offset: 19042},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 42, offset: 19046},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 639, col: 45, offset: 19049},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 639, col: 48, offset: 19052},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 639, col: 59, offset: 19063},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 639, col: 62, offset: 19066},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ConcatExpression",
|
|
pos: position{line: 643, col: 1, offset: 19154},
|
|
expr: &actionExpr{
|
|
pos: position{line: 643, col: 21, offset: 19174},
|
|
run: (*parser).callonConcatExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 643, col: 21, offset: 19174},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 21, offset: 19174},
|
|
val: "concat",
|
|
ignoreCase: true,
|
|
want: "\"CONCAT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 31, offset: 19184},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 34, offset: 19187},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 38, offset: 19191},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 643, col: 41, offset: 19194},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 643, col: 45, offset: 19198},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 643, col: 56, offset: 19209},
|
|
label: "others",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 643, col: 63, offset: 19216},
|
|
expr: &actionExpr{
|
|
pos: position{line: 643, col: 64, offset: 19217},
|
|
run: (*parser).callonConcatExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 643, col: 64, offset: 19217},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 64, offset: 19217},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 67, offset: 19220},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 71, offset: 19224},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 643, col: 74, offset: 19227},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 643, col: 77, offset: 19230},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 643, col: 109, offset: 19262},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 643, col: 112, offset: 19265},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LeftExpression",
|
|
pos: position{line: 648, col: 1, offset: 19414},
|
|
expr: &actionExpr{
|
|
pos: position{line: 648, col: 19, offset: 19432},
|
|
run: (*parser).callonLeftExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 648, col: 19, offset: 19432},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 648, col: 19, offset: 19432},
|
|
val: "left",
|
|
ignoreCase: true,
|
|
want: "\"LEFT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 648, col: 27, offset: 19440},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 648, col: 30, offset: 19443},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 648, col: 34, offset: 19447},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 648, col: 37, offset: 19450},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 648, col: 40, offset: 19453},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 648, col: 51, offset: 19464},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 648, col: 54, offset: 19467},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 648, col: 58, offset: 19471},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 648, col: 61, offset: 19474},
|
|
label: "length",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 648, col: 68, offset: 19481},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 648, col: 79, offset: 19492},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 648, col: 82, offset: 19495},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LengthExpression",
|
|
pos: position{line: 652, col: 1, offset: 19587},
|
|
expr: &actionExpr{
|
|
pos: position{line: 652, col: 21, offset: 19607},
|
|
run: (*parser).callonLengthExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 652, col: 21, offset: 19607},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 652, col: 21, offset: 19607},
|
|
val: "length",
|
|
ignoreCase: true,
|
|
want: "\"LENGTH\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 652, col: 31, offset: 19617},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 652, col: 34, offset: 19620},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 652, col: 38, offset: 19624},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 652, col: 41, offset: 19627},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 652, col: 44, offset: 19630},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 652, col: 55, offset: 19641},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 652, col: 58, offset: 19644},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "LTrimExpression",
|
|
pos: position{line: 656, col: 1, offset: 19730},
|
|
expr: &actionExpr{
|
|
pos: position{line: 656, col: 20, offset: 19749},
|
|
run: (*parser).callonLTrimExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 656, col: 20, offset: 19749},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 656, col: 20, offset: 19749},
|
|
val: "ltrim",
|
|
ignoreCase: true,
|
|
want: "\"LTRIM\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 656, col: 29, offset: 19758},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 656, col: 32, offset: 19761},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 656, col: 36, offset: 19765},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 656, col: 39, offset: 19768},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 656, col: 42, offset: 19771},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 656, col: 53, offset: 19782},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 656, col: 56, offset: 19785},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ReplaceExpression",
|
|
pos: position{line: 660, col: 1, offset: 19870},
|
|
expr: &actionExpr{
|
|
pos: position{line: 660, col: 22, offset: 19891},
|
|
run: (*parser).callonReplaceExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 660, col: 22, offset: 19891},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 660, col: 22, offset: 19891},
|
|
val: "replace",
|
|
ignoreCase: true,
|
|
want: "\"REPLACE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 33, offset: 19902},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 660, col: 36, offset: 19905},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 40, offset: 19909},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 660, col: 43, offset: 19912},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 660, col: 47, offset: 19916},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 58, offset: 19927},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 660, col: 61, offset: 19930},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 65, offset: 19934},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 660, col: 68, offset: 19937},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 660, col: 72, offset: 19941},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 83, offset: 19952},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 660, col: 86, offset: 19955},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 90, offset: 19959},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 660, col: 93, offset: 19962},
|
|
label: "ex3",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 660, col: 97, offset: 19966},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 660, col: 108, offset: 19977},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 660, col: 111, offset: 19980},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ReplicateExpression",
|
|
pos: position{line: 664, col: 1, offset: 20078},
|
|
expr: &actionExpr{
|
|
pos: position{line: 664, col: 24, offset: 20101},
|
|
run: (*parser).callonReplicateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 664, col: 24, offset: 20101},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 664, col: 24, offset: 20101},
|
|
val: "replicate",
|
|
ignoreCase: true,
|
|
want: "\"REPLICATE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 664, col: 37, offset: 20114},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 664, col: 40, offset: 20117},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 664, col: 44, offset: 20121},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 664, col: 47, offset: 20124},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 664, col: 51, offset: 20128},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 664, col: 62, offset: 20139},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 664, col: 65, offset: 20142},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 664, col: 69, offset: 20146},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 664, col: 72, offset: 20149},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 664, col: 76, offset: 20153},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 664, col: 87, offset: 20164},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 664, col: 90, offset: 20167},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ReverseExpression",
|
|
pos: position{line: 668, col: 1, offset: 20262},
|
|
expr: &actionExpr{
|
|
pos: position{line: 668, col: 22, offset: 20283},
|
|
run: (*parser).callonReverseExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 668, col: 22, offset: 20283},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 668, col: 22, offset: 20283},
|
|
val: "reverse",
|
|
ignoreCase: true,
|
|
want: "\"REVERSE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 668, col: 33, offset: 20294},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 668, col: 36, offset: 20297},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 668, col: 40, offset: 20301},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 668, col: 43, offset: 20304},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 668, col: 46, offset: 20307},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 668, col: 57, offset: 20318},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 668, col: 60, offset: 20321},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "RightExpression",
|
|
pos: position{line: 672, col: 1, offset: 20408},
|
|
expr: &actionExpr{
|
|
pos: position{line: 672, col: 20, offset: 20427},
|
|
run: (*parser).callonRightExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 672, col: 20, offset: 20427},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 672, col: 20, offset: 20427},
|
|
val: "right",
|
|
ignoreCase: true,
|
|
want: "\"RIGHT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 672, col: 29, offset: 20436},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 672, col: 32, offset: 20439},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 672, col: 36, offset: 20443},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 672, col: 39, offset: 20446},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 672, col: 42, offset: 20449},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 672, col: 53, offset: 20460},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 672, col: 56, offset: 20463},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 672, col: 60, offset: 20467},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 672, col: 63, offset: 20470},
|
|
label: "length",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 672, col: 70, offset: 20477},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 672, col: 81, offset: 20488},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 672, col: 84, offset: 20491},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "RTrimExpression",
|
|
pos: position{line: 676, col: 1, offset: 20584},
|
|
expr: &actionExpr{
|
|
pos: position{line: 676, col: 20, offset: 20603},
|
|
run: (*parser).callonRTrimExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 676, col: 20, offset: 20603},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 676, col: 20, offset: 20603},
|
|
val: "rtrim",
|
|
ignoreCase: true,
|
|
want: "\"RTRIM\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 676, col: 29, offset: 20612},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 676, col: 32, offset: 20615},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 676, col: 36, offset: 20619},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 676, col: 39, offset: 20622},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 676, col: 42, offset: 20625},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 676, col: 53, offset: 20636},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 676, col: 56, offset: 20639},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SubstringExpression",
|
|
pos: position{line: 680, col: 1, offset: 20724},
|
|
expr: &actionExpr{
|
|
pos: position{line: 680, col: 24, offset: 20747},
|
|
run: (*parser).callonSubstringExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 680, col: 24, offset: 20747},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 680, col: 24, offset: 20747},
|
|
val: "substring",
|
|
ignoreCase: true,
|
|
want: "\"SUBSTRING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 37, offset: 20760},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 680, col: 40, offset: 20763},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 44, offset: 20767},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 680, col: 47, offset: 20770},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 680, col: 50, offset: 20773},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 61, offset: 20784},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 680, col: 64, offset: 20787},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 68, offset: 20791},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 680, col: 71, offset: 20794},
|
|
label: "startPos",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 680, col: 80, offset: 20803},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 91, offset: 20814},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 680, col: 94, offset: 20817},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 98, offset: 20821},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 680, col: 101, offset: 20824},
|
|
label: "length",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 680, col: 108, offset: 20831},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 680, col: 119, offset: 20842},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 680, col: 122, offset: 20845},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "TrimExpression",
|
|
pos: position{line: 684, col: 1, offset: 20952},
|
|
expr: &actionExpr{
|
|
pos: position{line: 684, col: 19, offset: 20970},
|
|
run: (*parser).callonTrimExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 684, col: 19, offset: 20970},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 684, col: 19, offset: 20970},
|
|
val: "trim",
|
|
ignoreCase: true,
|
|
want: "\"TRIM\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 684, col: 27, offset: 20978},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 684, col: 30, offset: 20981},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 684, col: 34, offset: 20985},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 684, col: 37, offset: 20988},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 684, col: 40, offset: 20991},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 684, col: 51, offset: 21002},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 684, col: 54, offset: 21005},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ThreeArgumentStringFunctionExpression",
|
|
pos: position{line: 688, col: 1, offset: 21089},
|
|
expr: &actionExpr{
|
|
pos: position{line: 688, col: 42, offset: 21130},
|
|
run: (*parser).callonThreeArgumentStringFunctionExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 688, col: 42, offset: 21130},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 688, col: 42, offset: 21130},
|
|
label: "function",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 688, col: 51, offset: 21139},
|
|
name: "ThreeArgumentStringFunction",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 688, col: 79, offset: 21167},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 688, col: 82, offset: 21170},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 688, col: 86, offset: 21174},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 688, col: 89, offset: 21177},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 688, col: 93, offset: 21181},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 688, col: 104, offset: 21192},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 688, col: 107, offset: 21195},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 688, col: 111, offset: 21199},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 688, col: 114, offset: 21202},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 688, col: 118, offset: 21206},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 688, col: 129, offset: 21217},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 688, col: 132, offset: 21220},
|
|
label: "ignoreCase",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 688, col: 143, offset: 21231},
|
|
expr: &actionExpr{
|
|
pos: position{line: 688, col: 144, offset: 21232},
|
|
run: (*parser).callonThreeArgumentStringFunctionExpression18,
|
|
expr: &seqExpr{
|
|
pos: position{line: 688, col: 144, offset: 21232},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 688, col: 144, offset: 21232},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 688, col: 148, offset: 21236},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 688, col: 151, offset: 21239},
|
|
label: "boolean",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 688, col: 159, offset: 21247},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 688, col: 196, offset: 21284},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ThreeArgumentStringFunction",
|
|
pos: position{line: 706, col: 1, offset: 21806},
|
|
expr: &actionExpr{
|
|
pos: position{line: 706, col: 32, offset: 21837},
|
|
run: (*parser).callonThreeArgumentStringFunction1,
|
|
expr: &choiceExpr{
|
|
pos: position{line: 706, col: 33, offset: 21838},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 706, col: 33, offset: 21838},
|
|
val: "contains",
|
|
ignoreCase: true,
|
|
want: "\"CONTAINS\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 706, col: 47, offset: 21852},
|
|
val: "endswith",
|
|
ignoreCase: true,
|
|
want: "\"ENDSWITH\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 706, col: 61, offset: 21866},
|
|
val: "startswith",
|
|
ignoreCase: true,
|
|
want: "\"STARTSWITH\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 706, col: 77, offset: 21882},
|
|
val: "index_of",
|
|
ignoreCase: true,
|
|
want: "\"INDEX_OF\"i",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsDefined",
|
|
pos: position{line: 710, col: 1, offset: 21931},
|
|
expr: &actionExpr{
|
|
pos: position{line: 710, col: 14, offset: 21944},
|
|
run: (*parser).callonIsDefined1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 710, col: 14, offset: 21944},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 710, col: 14, offset: 21944},
|
|
val: "is_defined",
|
|
ignoreCase: true,
|
|
want: "\"IS_DEFINED\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 710, col: 28, offset: 21958},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 710, col: 31, offset: 21961},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 710, col: 35, offset: 21965},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 710, col: 38, offset: 21968},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 710, col: 41, offset: 21971},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 710, col: 52, offset: 21982},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 710, col: 55, offset: 21985},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsArray",
|
|
pos: position{line: 714, col: 1, offset: 22074},
|
|
expr: &actionExpr{
|
|
pos: position{line: 714, col: 12, offset: 22085},
|
|
run: (*parser).callonIsArray1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 714, col: 12, offset: 22085},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 714, col: 12, offset: 22085},
|
|
val: "is_array",
|
|
ignoreCase: true,
|
|
want: "\"IS_ARRAY\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 714, col: 24, offset: 22097},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 714, col: 27, offset: 22100},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 714, col: 31, offset: 22104},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 714, col: 34, offset: 22107},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 714, col: 37, offset: 22110},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 714, col: 48, offset: 22121},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 714, col: 51, offset: 22124},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsBool",
|
|
pos: position{line: 718, col: 1, offset: 22211},
|
|
expr: &actionExpr{
|
|
pos: position{line: 718, col: 11, offset: 22221},
|
|
run: (*parser).callonIsBool1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 718, col: 11, offset: 22221},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 718, col: 11, offset: 22221},
|
|
val: "is_bool",
|
|
ignoreCase: true,
|
|
want: "\"IS_BOOL\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 718, col: 22, offset: 22232},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 718, col: 25, offset: 22235},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 718, col: 29, offset: 22239},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 718, col: 32, offset: 22242},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 718, col: 35, offset: 22245},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 718, col: 46, offset: 22256},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 718, col: 49, offset: 22259},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsFiniteNumber",
|
|
pos: position{line: 722, col: 1, offset: 22345},
|
|
expr: &actionExpr{
|
|
pos: position{line: 722, col: 19, offset: 22363},
|
|
run: (*parser).callonIsFiniteNumber1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 722, col: 19, offset: 22363},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 722, col: 19, offset: 22363},
|
|
val: "is_finite_number",
|
|
ignoreCase: true,
|
|
want: "\"IS_FINITE_NUMBER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 722, col: 39, offset: 22383},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 722, col: 42, offset: 22386},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 722, col: 46, offset: 22390},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 722, col: 49, offset: 22393},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 722, col: 52, offset: 22396},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 722, col: 63, offset: 22407},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 722, col: 66, offset: 22410},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsInteger",
|
|
pos: position{line: 726, col: 1, offset: 22504},
|
|
expr: &actionExpr{
|
|
pos: position{line: 726, col: 14, offset: 22517},
|
|
run: (*parser).callonIsInteger1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 726, col: 14, offset: 22517},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 726, col: 14, offset: 22517},
|
|
val: "is_integer",
|
|
ignoreCase: true,
|
|
want: "\"IS_INTEGER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 726, col: 28, offset: 22531},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 726, col: 31, offset: 22534},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 726, col: 35, offset: 22538},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 726, col: 38, offset: 22541},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 726, col: 41, offset: 22544},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 726, col: 52, offset: 22555},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 726, col: 55, offset: 22558},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsNull",
|
|
pos: position{line: 730, col: 1, offset: 22647},
|
|
expr: &actionExpr{
|
|
pos: position{line: 730, col: 11, offset: 22657},
|
|
run: (*parser).callonIsNull1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 730, col: 11, offset: 22657},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 730, col: 11, offset: 22657},
|
|
val: "is_null",
|
|
ignoreCase: true,
|
|
want: "\"IS_NULL\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 730, col: 22, offset: 22668},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 730, col: 25, offset: 22671},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 730, col: 29, offset: 22675},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 730, col: 32, offset: 22678},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 730, col: 35, offset: 22681},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 730, col: 46, offset: 22692},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 730, col: 49, offset: 22695},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsNumber",
|
|
pos: position{line: 734, col: 1, offset: 22781},
|
|
expr: &actionExpr{
|
|
pos: position{line: 734, col: 13, offset: 22793},
|
|
run: (*parser).callonIsNumber1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 734, col: 13, offset: 22793},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 734, col: 13, offset: 22793},
|
|
val: "is_number",
|
|
ignoreCase: true,
|
|
want: "\"IS_NUMBER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 734, col: 26, offset: 22806},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 734, col: 29, offset: 22809},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 734, col: 33, offset: 22813},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 734, col: 36, offset: 22816},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 734, col: 39, offset: 22819},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 734, col: 50, offset: 22830},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 734, col: 53, offset: 22833},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsObject",
|
|
pos: position{line: 738, col: 1, offset: 22921},
|
|
expr: &actionExpr{
|
|
pos: position{line: 738, col: 13, offset: 22933},
|
|
run: (*parser).callonIsObject1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 738, col: 13, offset: 22933},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 738, col: 13, offset: 22933},
|
|
val: "is_object",
|
|
ignoreCase: true,
|
|
want: "\"IS_OBJECT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 738, col: 26, offset: 22946},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 738, col: 29, offset: 22949},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 738, col: 33, offset: 22953},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 738, col: 36, offset: 22956},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 738, col: 39, offset: 22959},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 738, col: 50, offset: 22970},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 738, col: 53, offset: 22973},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsPrimitive",
|
|
pos: position{line: 742, col: 1, offset: 23061},
|
|
expr: &actionExpr{
|
|
pos: position{line: 742, col: 16, offset: 23076},
|
|
run: (*parser).callonIsPrimitive1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 742, col: 16, offset: 23076},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 742, col: 16, offset: 23076},
|
|
val: "is_primitive",
|
|
ignoreCase: true,
|
|
want: "\"IS_PRIMITIVE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 742, col: 32, offset: 23092},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 742, col: 35, offset: 23095},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 742, col: 39, offset: 23099},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 742, col: 42, offset: 23102},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 742, col: 45, offset: 23105},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 742, col: 56, offset: 23116},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 742, col: 59, offset: 23119},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IsString",
|
|
pos: position{line: 746, col: 1, offset: 23210},
|
|
expr: &actionExpr{
|
|
pos: position{line: 746, col: 13, offset: 23222},
|
|
run: (*parser).callonIsString1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 746, col: 13, offset: 23222},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 746, col: 13, offset: 23222},
|
|
val: "is_string",
|
|
ignoreCase: true,
|
|
want: "\"IS_STRING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 746, col: 26, offset: 23235},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 746, col: 29, offset: 23238},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 746, col: 33, offset: 23242},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 746, col: 36, offset: 23245},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 746, col: 39, offset: 23248},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 746, col: 50, offset: 23259},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 746, col: 53, offset: 23262},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayConcatExpression",
|
|
pos: position{line: 750, col: 1, offset: 23350},
|
|
expr: &actionExpr{
|
|
pos: position{line: 750, col: 26, offset: 23375},
|
|
run: (*parser).callonArrayConcatExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 750, col: 26, offset: 23375},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 750, col: 26, offset: 23375},
|
|
val: "array_concat",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONCAT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 750, col: 42, offset: 23391},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 750, col: 45, offset: 23394},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 750, col: 49, offset: 23398},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 750, col: 52, offset: 23401},
|
|
label: "arrays",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 750, col: 59, offset: 23408},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 750, col: 70, offset: 23419},
|
|
label: "others",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 750, col: 77, offset: 23426},
|
|
expr: &actionExpr{
|
|
pos: position{line: 750, col: 78, offset: 23427},
|
|
run: (*parser).callonArrayConcatExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 750, col: 78, offset: 23427},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 750, col: 78, offset: 23427},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 750, col: 81, offset: 23430},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 750, col: 85, offset: 23434},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 750, col: 88, offset: 23437},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 750, col: 91, offset: 23440},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 750, col: 123, offset: 23472},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 750, col: 126, offset: 23475},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayContainsExpression",
|
|
pos: position{line: 754, col: 1, offset: 23605},
|
|
expr: &actionExpr{
|
|
pos: position{line: 754, col: 28, offset: 23632},
|
|
run: (*parser).callonArrayContainsExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 754, col: 28, offset: 23632},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 754, col: 28, offset: 23632},
|
|
val: "array_contains",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONTAINS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 46, offset: 23650},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 754, col: 49, offset: 23653},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 53, offset: 23657},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 754, col: 56, offset: 23660},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 754, col: 62, offset: 23666},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 73, offset: 23677},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 754, col: 76, offset: 23680},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 80, offset: 23684},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 754, col: 83, offset: 23687},
|
|
label: "item",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 754, col: 88, offset: 23692},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 754, col: 99, offset: 23703},
|
|
label: "partialMatch",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 754, col: 112, offset: 23716},
|
|
expr: &actionExpr{
|
|
pos: position{line: 754, col: 113, offset: 23717},
|
|
run: (*parser).callonArrayContainsExpression16,
|
|
expr: &seqExpr{
|
|
pos: position{line: 754, col: 113, offset: 23717},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 113, offset: 23717},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 754, col: 116, offset: 23720},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 120, offset: 23724},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 754, col: 123, offset: 23727},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 754, col: 126, offset: 23730},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 754, col: 158, offset: 23762},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 754, col: 161, offset: 23765},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayContainsAnyExpression",
|
|
pos: position{line: 758, col: 1, offset: 23881},
|
|
expr: &actionExpr{
|
|
pos: position{line: 758, col: 31, offset: 23911},
|
|
run: (*parser).callonArrayContainsAnyExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 758, col: 31, offset: 23911},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 758, col: 31, offset: 23911},
|
|
val: "array_contains_any",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONTAINS_ANY\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 758, col: 53, offset: 23933},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 758, col: 56, offset: 23936},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 758, col: 60, offset: 23940},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 758, col: 63, offset: 23943},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 758, col: 69, offset: 23949},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 758, col: 80, offset: 23960},
|
|
label: "items",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 758, col: 86, offset: 23966},
|
|
expr: &actionExpr{
|
|
pos: position{line: 758, col: 87, offset: 23967},
|
|
run: (*parser).callonArrayContainsAnyExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 758, col: 87, offset: 23967},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 758, col: 87, offset: 23967},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 758, col: 90, offset: 23970},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 758, col: 94, offset: 23974},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 758, col: 97, offset: 23977},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 758, col: 100, offset: 23980},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 758, col: 132, offset: 24012},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 758, col: 135, offset: 24015},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayContainsAllExpression",
|
|
pos: position{line: 762, col: 1, offset: 24148},
|
|
expr: &actionExpr{
|
|
pos: position{line: 762, col: 31, offset: 24178},
|
|
run: (*parser).callonArrayContainsAllExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 762, col: 31, offset: 24178},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 762, col: 31, offset: 24178},
|
|
val: "array_contains_all",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_CONTAINS_ALL\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 762, col: 53, offset: 24200},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 762, col: 56, offset: 24203},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 762, col: 60, offset: 24207},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 762, col: 63, offset: 24210},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 762, col: 69, offset: 24216},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 762, col: 80, offset: 24227},
|
|
label: "items",
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 762, col: 86, offset: 24233},
|
|
expr: &actionExpr{
|
|
pos: position{line: 762, col: 87, offset: 24234},
|
|
run: (*parser).callonArrayContainsAllExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 762, col: 87, offset: 24234},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 762, col: 87, offset: 24234},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 762, col: 90, offset: 24237},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 762, col: 94, offset: 24241},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 762, col: 97, offset: 24244},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 762, col: 100, offset: 24247},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 762, col: 132, offset: 24279},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 762, col: 135, offset: 24282},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArrayLengthExpression",
|
|
pos: position{line: 766, col: 1, offset: 24415},
|
|
expr: &actionExpr{
|
|
pos: position{line: 766, col: 26, offset: 24440},
|
|
run: (*parser).callonArrayLengthExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 766, col: 26, offset: 24440},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 766, col: 26, offset: 24440},
|
|
val: "array_length",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_LENGTH\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 766, col: 42, offset: 24456},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 766, col: 45, offset: 24459},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 766, col: 49, offset: 24463},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 766, col: 52, offset: 24466},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 766, col: 58, offset: 24472},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 766, col: 69, offset: 24483},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 766, col: 72, offset: 24486},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ArraySliceExpression",
|
|
pos: position{line: 770, col: 1, offset: 24580},
|
|
expr: &actionExpr{
|
|
pos: position{line: 770, col: 25, offset: 24604},
|
|
run: (*parser).callonArraySliceExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 770, col: 25, offset: 24604},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 770, col: 25, offset: 24604},
|
|
val: "array_slice",
|
|
ignoreCase: true,
|
|
want: "\"ARRAY_SLICE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 40, offset: 24619},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 770, col: 43, offset: 24622},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 47, offset: 24626},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 770, col: 50, offset: 24629},
|
|
label: "array",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 770, col: 56, offset: 24635},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 67, offset: 24646},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 770, col: 70, offset: 24649},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 74, offset: 24653},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 770, col: 77, offset: 24656},
|
|
label: "start",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 770, col: 83, offset: 24662},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 770, col: 94, offset: 24673},
|
|
label: "length",
|
|
expr: &zeroOrOneExpr{
|
|
pos: position{line: 770, col: 101, offset: 24680},
|
|
expr: &actionExpr{
|
|
pos: position{line: 770, col: 102, offset: 24681},
|
|
run: (*parser).callonArraySliceExpression16,
|
|
expr: &seqExpr{
|
|
pos: position{line: 770, col: 102, offset: 24681},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 102, offset: 24681},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 770, col: 105, offset: 24684},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 109, offset: 24688},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 770, col: 112, offset: 24691},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 770, col: 115, offset: 24694},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 770, col: 147, offset: 24726},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 770, col: 150, offset: 24729},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SetIntersectExpression",
|
|
pos: position{line: 774, col: 1, offset: 24837},
|
|
expr: &actionExpr{
|
|
pos: position{line: 774, col: 27, offset: 24863},
|
|
run: (*parser).callonSetIntersectExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 774, col: 27, offset: 24863},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 774, col: 27, offset: 24863},
|
|
val: "setintersect",
|
|
ignoreCase: true,
|
|
want: "\"SetIntersect\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 774, col: 43, offset: 24879},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 774, col: 46, offset: 24882},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 774, col: 50, offset: 24886},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 774, col: 53, offset: 24889},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 774, col: 58, offset: 24894},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 774, col: 69, offset: 24905},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 774, col: 72, offset: 24908},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 774, col: 76, offset: 24912},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 774, col: 79, offset: 24915},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 774, col: 84, offset: 24920},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 774, col: 95, offset: 24931},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 774, col: 98, offset: 24934},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SetUnionExpression",
|
|
pos: position{line: 778, col: 1, offset: 25034},
|
|
expr: &actionExpr{
|
|
pos: position{line: 778, col: 23, offset: 25056},
|
|
run: (*parser).callonSetUnionExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 778, col: 23, offset: 25056},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 778, col: 23, offset: 25056},
|
|
val: "setunion",
|
|
ignoreCase: true,
|
|
want: "\"SetUnion\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 778, col: 35, offset: 25068},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 778, col: 38, offset: 25071},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 778, col: 42, offset: 25075},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 778, col: 45, offset: 25078},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 778, col: 50, offset: 25083},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 778, col: 61, offset: 25094},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 778, col: 64, offset: 25097},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 778, col: 68, offset: 25101},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 778, col: 71, offset: 25104},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 778, col: 76, offset: 25109},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 778, col: 87, offset: 25120},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 778, col: 90, offset: 25123},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "IifExpression",
|
|
pos: position{line: 782, col: 1, offset: 25219},
|
|
expr: &actionExpr{
|
|
pos: position{line: 782, col: 18, offset: 25236},
|
|
run: (*parser).callonIifExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 782, col: 18, offset: 25236},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 18, offset: 25236},
|
|
val: "iif",
|
|
ignoreCase: true,
|
|
want: "\"IIF\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 25, offset: 25243},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 28, offset: 25246},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 32, offset: 25250},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 782, col: 35, offset: 25253},
|
|
label: "condition",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 782, col: 45, offset: 25263},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 56, offset: 25274},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 59, offset: 25277},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 63, offset: 25281},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 782, col: 66, offset: 25284},
|
|
label: "trueValue",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 782, col: 76, offset: 25294},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 87, offset: 25305},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 90, offset: 25308},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 94, offset: 25312},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 782, col: 97, offset: 25315},
|
|
label: "falseValue",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 782, col: 108, offset: 25326},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 782, col: 119, offset: 25337},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 782, col: 122, offset: 25340},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAbsExpression",
|
|
pos: position{line: 786, col: 1, offset: 25453},
|
|
expr: &actionExpr{
|
|
pos: position{line: 786, col: 22, offset: 25474},
|
|
run: (*parser).callonMathAbsExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 786, col: 22, offset: 25474},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 786, col: 22, offset: 25474},
|
|
val: "abs",
|
|
ignoreCase: true,
|
|
want: "\"ABS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 786, col: 29, offset: 25481},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 786, col: 32, offset: 25484},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 786, col: 36, offset: 25488},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 786, col: 39, offset: 25491},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 786, col: 42, offset: 25494},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 786, col: 53, offset: 25505},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 786, col: 56, offset: 25508},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAcosExpression",
|
|
pos: position{line: 787, col: 1, offset: 25590},
|
|
expr: &actionExpr{
|
|
pos: position{line: 787, col: 23, offset: 25612},
|
|
run: (*parser).callonMathAcosExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 787, col: 23, offset: 25612},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 787, col: 23, offset: 25612},
|
|
val: "acos",
|
|
ignoreCase: true,
|
|
want: "\"ACOS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 787, col: 31, offset: 25620},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 787, col: 34, offset: 25623},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 787, col: 38, offset: 25627},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 787, col: 41, offset: 25630},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 787, col: 44, offset: 25633},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 787, col: 55, offset: 25644},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 787, col: 58, offset: 25647},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAsinExpression",
|
|
pos: position{line: 788, col: 1, offset: 25730},
|
|
expr: &actionExpr{
|
|
pos: position{line: 788, col: 23, offset: 25752},
|
|
run: (*parser).callonMathAsinExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 788, col: 23, offset: 25752},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 788, col: 23, offset: 25752},
|
|
val: "asin",
|
|
ignoreCase: true,
|
|
want: "\"ASIN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 788, col: 31, offset: 25760},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 788, col: 34, offset: 25763},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 788, col: 38, offset: 25767},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 788, col: 41, offset: 25770},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 788, col: 44, offset: 25773},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 788, col: 55, offset: 25784},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 788, col: 58, offset: 25787},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAtanExpression",
|
|
pos: position{line: 789, col: 1, offset: 25870},
|
|
expr: &actionExpr{
|
|
pos: position{line: 789, col: 23, offset: 25892},
|
|
run: (*parser).callonMathAtanExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 789, col: 23, offset: 25892},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 789, col: 23, offset: 25892},
|
|
val: "atan",
|
|
ignoreCase: true,
|
|
want: "\"ATAN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 789, col: 31, offset: 25900},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 789, col: 34, offset: 25903},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 789, col: 38, offset: 25907},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 789, col: 41, offset: 25910},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 789, col: 44, offset: 25913},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 789, col: 55, offset: 25924},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 789, col: 58, offset: 25927},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathCeilingExpression",
|
|
pos: position{line: 790, col: 1, offset: 26010},
|
|
expr: &actionExpr{
|
|
pos: position{line: 790, col: 26, offset: 26035},
|
|
run: (*parser).callonMathCeilingExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 790, col: 26, offset: 26035},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 790, col: 26, offset: 26035},
|
|
val: "ceiling",
|
|
ignoreCase: true,
|
|
want: "\"CEILING\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 790, col: 37, offset: 26046},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 790, col: 40, offset: 26049},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 790, col: 44, offset: 26053},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 790, col: 47, offset: 26056},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 790, col: 50, offset: 26059},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 790, col: 61, offset: 26070},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 790, col: 64, offset: 26073},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathCosExpression",
|
|
pos: position{line: 791, col: 1, offset: 26159},
|
|
expr: &actionExpr{
|
|
pos: position{line: 791, col: 22, offset: 26180},
|
|
run: (*parser).callonMathCosExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 791, col: 22, offset: 26180},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 791, col: 22, offset: 26180},
|
|
val: "cos",
|
|
ignoreCase: true,
|
|
want: "\"COS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 791, col: 29, offset: 26187},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 791, col: 32, offset: 26190},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 791, col: 36, offset: 26194},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 791, col: 39, offset: 26197},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 791, col: 42, offset: 26200},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 791, col: 53, offset: 26211},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 791, col: 56, offset: 26214},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathCotExpression",
|
|
pos: position{line: 792, col: 1, offset: 26296},
|
|
expr: &actionExpr{
|
|
pos: position{line: 792, col: 22, offset: 26317},
|
|
run: (*parser).callonMathCotExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 792, col: 22, offset: 26317},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 792, col: 22, offset: 26317},
|
|
val: "cot",
|
|
ignoreCase: true,
|
|
want: "\"COT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 792, col: 29, offset: 26324},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 792, col: 32, offset: 26327},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 792, col: 36, offset: 26331},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 792, col: 39, offset: 26334},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 792, col: 42, offset: 26337},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 792, col: 53, offset: 26348},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 792, col: 56, offset: 26351},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathDegreesExpression",
|
|
pos: position{line: 793, col: 1, offset: 26433},
|
|
expr: &actionExpr{
|
|
pos: position{line: 793, col: 26, offset: 26458},
|
|
run: (*parser).callonMathDegreesExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 793, col: 26, offset: 26458},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 793, col: 26, offset: 26458},
|
|
val: "degrees",
|
|
ignoreCase: true,
|
|
want: "\"DEGREES\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 793, col: 37, offset: 26469},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 793, col: 40, offset: 26472},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 793, col: 44, offset: 26476},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 793, col: 47, offset: 26479},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 793, col: 50, offset: 26482},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 793, col: 61, offset: 26493},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 793, col: 64, offset: 26496},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathExpExpression",
|
|
pos: position{line: 794, col: 1, offset: 26582},
|
|
expr: &actionExpr{
|
|
pos: position{line: 794, col: 22, offset: 26603},
|
|
run: (*parser).callonMathExpExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 794, col: 22, offset: 26603},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 794, col: 22, offset: 26603},
|
|
val: "exp",
|
|
ignoreCase: true,
|
|
want: "\"EXP\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 794, col: 29, offset: 26610},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 794, col: 32, offset: 26613},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 794, col: 36, offset: 26617},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 794, col: 39, offset: 26620},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 794, col: 42, offset: 26623},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 794, col: 53, offset: 26634},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 794, col: 56, offset: 26637},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathFloorExpression",
|
|
pos: position{line: 795, col: 1, offset: 26719},
|
|
expr: &actionExpr{
|
|
pos: position{line: 795, col: 24, offset: 26742},
|
|
run: (*parser).callonMathFloorExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 795, col: 24, offset: 26742},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 795, col: 24, offset: 26742},
|
|
val: "floor",
|
|
ignoreCase: true,
|
|
want: "\"FLOOR\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 795, col: 33, offset: 26751},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 795, col: 36, offset: 26754},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 795, col: 40, offset: 26758},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 795, col: 43, offset: 26761},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 795, col: 46, offset: 26764},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 795, col: 57, offset: 26775},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 795, col: 60, offset: 26778},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitNotExpression",
|
|
pos: position{line: 796, col: 1, offset: 26862},
|
|
expr: &actionExpr{
|
|
pos: position{line: 796, col: 28, offset: 26889},
|
|
run: (*parser).callonMathIntBitNotExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 796, col: 28, offset: 26889},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 796, col: 28, offset: 26889},
|
|
val: "intbitnot",
|
|
ignoreCase: true,
|
|
want: "\"IntBitNot\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 796, col: 41, offset: 26902},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 796, col: 44, offset: 26905},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 796, col: 48, offset: 26909},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 796, col: 51, offset: 26912},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 796, col: 54, offset: 26915},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 796, col: 65, offset: 26926},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 796, col: 68, offset: 26929},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathLog10Expression",
|
|
pos: position{line: 797, col: 1, offset: 27017},
|
|
expr: &actionExpr{
|
|
pos: position{line: 797, col: 24, offset: 27040},
|
|
run: (*parser).callonMathLog10Expression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 797, col: 24, offset: 27040},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 797, col: 24, offset: 27040},
|
|
val: "log10",
|
|
ignoreCase: true,
|
|
want: "\"LOG10\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 797, col: 33, offset: 27049},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 797, col: 36, offset: 27052},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 797, col: 40, offset: 27056},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 797, col: 43, offset: 27059},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 797, col: 46, offset: 27062},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 797, col: 57, offset: 27073},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 797, col: 60, offset: 27076},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathRadiansExpression",
|
|
pos: position{line: 798, col: 1, offset: 27160},
|
|
expr: &actionExpr{
|
|
pos: position{line: 798, col: 26, offset: 27185},
|
|
run: (*parser).callonMathRadiansExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 798, col: 26, offset: 27185},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 798, col: 26, offset: 27185},
|
|
val: "radians",
|
|
ignoreCase: true,
|
|
want: "\"RADIANS\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 798, col: 37, offset: 27196},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 798, col: 40, offset: 27199},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 798, col: 44, offset: 27203},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 798, col: 47, offset: 27206},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 798, col: 50, offset: 27209},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 798, col: 61, offset: 27220},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 798, col: 64, offset: 27223},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathRoundExpression",
|
|
pos: position{line: 799, col: 1, offset: 27309},
|
|
expr: &actionExpr{
|
|
pos: position{line: 799, col: 24, offset: 27332},
|
|
run: (*parser).callonMathRoundExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 799, col: 24, offset: 27332},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 799, col: 24, offset: 27332},
|
|
val: "round",
|
|
ignoreCase: true,
|
|
want: "\"ROUND\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 799, col: 33, offset: 27341},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 799, col: 36, offset: 27344},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 799, col: 40, offset: 27348},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 799, col: 43, offset: 27351},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 799, col: 46, offset: 27354},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 799, col: 57, offset: 27365},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 799, col: 60, offset: 27368},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSignExpression",
|
|
pos: position{line: 800, col: 1, offset: 27452},
|
|
expr: &actionExpr{
|
|
pos: position{line: 800, col: 23, offset: 27474},
|
|
run: (*parser).callonMathSignExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 800, col: 23, offset: 27474},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 23, offset: 27474},
|
|
val: "sign",
|
|
ignoreCase: true,
|
|
want: "\"SIGN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 31, offset: 27482},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 34, offset: 27485},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 38, offset: 27489},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 800, col: 41, offset: 27492},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 800, col: 44, offset: 27495},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 800, col: 55, offset: 27506},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 800, col: 58, offset: 27509},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSinExpression",
|
|
pos: position{line: 801, col: 1, offset: 27592},
|
|
expr: &actionExpr{
|
|
pos: position{line: 801, col: 22, offset: 27613},
|
|
run: (*parser).callonMathSinExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 801, col: 22, offset: 27613},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 22, offset: 27613},
|
|
val: "sin",
|
|
ignoreCase: true,
|
|
want: "\"SIN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 29, offset: 27620},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 32, offset: 27623},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 36, offset: 27627},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 801, col: 39, offset: 27630},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 801, col: 42, offset: 27633},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 801, col: 53, offset: 27644},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 801, col: 56, offset: 27647},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSqrtExpression",
|
|
pos: position{line: 802, col: 1, offset: 27729},
|
|
expr: &actionExpr{
|
|
pos: position{line: 802, col: 23, offset: 27751},
|
|
run: (*parser).callonMathSqrtExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 802, col: 23, offset: 27751},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 23, offset: 27751},
|
|
val: "sqrt",
|
|
ignoreCase: true,
|
|
want: "\"SQRT\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 31, offset: 27759},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 34, offset: 27762},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 38, offset: 27766},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 802, col: 41, offset: 27769},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 802, col: 44, offset: 27772},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 802, col: 55, offset: 27783},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 802, col: 58, offset: 27786},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathSquareExpression",
|
|
pos: position{line: 803, col: 1, offset: 27869},
|
|
expr: &actionExpr{
|
|
pos: position{line: 803, col: 25, offset: 27893},
|
|
run: (*parser).callonMathSquareExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 803, col: 25, offset: 27893},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 25, offset: 27893},
|
|
val: "square",
|
|
ignoreCase: true,
|
|
want: "\"SQUARE\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 35, offset: 27903},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 38, offset: 27906},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 42, offset: 27910},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 803, col: 45, offset: 27913},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 803, col: 48, offset: 27916},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 803, col: 59, offset: 27927},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 803, col: 62, offset: 27930},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathTanExpression",
|
|
pos: position{line: 804, col: 1, offset: 28015},
|
|
expr: &actionExpr{
|
|
pos: position{line: 804, col: 22, offset: 28036},
|
|
run: (*parser).callonMathTanExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 804, col: 22, offset: 28036},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 22, offset: 28036},
|
|
val: "tan",
|
|
ignoreCase: true,
|
|
want: "\"TAN\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 29, offset: 28043},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 32, offset: 28046},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 36, offset: 28050},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 804, col: 39, offset: 28053},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 804, col: 42, offset: 28056},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 804, col: 53, offset: 28067},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 804, col: 56, offset: 28070},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathTruncExpression",
|
|
pos: position{line: 805, col: 1, offset: 28152},
|
|
expr: &actionExpr{
|
|
pos: position{line: 805, col: 24, offset: 28175},
|
|
run: (*parser).callonMathTruncExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 805, col: 24, offset: 28175},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 24, offset: 28175},
|
|
val: "trunc",
|
|
ignoreCase: true,
|
|
want: "\"TRUNC\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 33, offset: 28184},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 36, offset: 28187},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 40, offset: 28191},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 805, col: 43, offset: 28194},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 805, col: 46, offset: 28197},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 805, col: 57, offset: 28208},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 805, col: 60, offset: 28211},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathAtn2Expression",
|
|
pos: position{line: 807, col: 1, offset: 28296},
|
|
expr: &actionExpr{
|
|
pos: position{line: 807, col: 23, offset: 28318},
|
|
run: (*parser).callonMathAtn2Expression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 807, col: 23, offset: 28318},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 23, offset: 28318},
|
|
val: "atn2",
|
|
ignoreCase: true,
|
|
want: "\"ATN2\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 31, offset: 28326},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 34, offset: 28329},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 38, offset: 28333},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 807, col: 41, offset: 28336},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 807, col: 46, offset: 28341},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 57, offset: 28352},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 60, offset: 28355},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 64, offset: 28359},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 807, col: 67, offset: 28362},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 807, col: 72, offset: 28367},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 807, col: 83, offset: 28378},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 807, col: 86, offset: 28381},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntAddExpression",
|
|
pos: position{line: 808, col: 1, offset: 28472},
|
|
expr: &actionExpr{
|
|
pos: position{line: 808, col: 25, offset: 28496},
|
|
run: (*parser).callonMathIntAddExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 808, col: 25, offset: 28496},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 25, offset: 28496},
|
|
val: "intadd",
|
|
ignoreCase: true,
|
|
want: "\"IntAdd\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 35, offset: 28506},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 38, offset: 28509},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 42, offset: 28513},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 808, col: 45, offset: 28516},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 808, col: 50, offset: 28521},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 61, offset: 28532},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 64, offset: 28535},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 68, offset: 28539},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 808, col: 71, offset: 28542},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 808, col: 76, offset: 28547},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 808, col: 87, offset: 28558},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 808, col: 90, offset: 28561},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitAndExpression",
|
|
pos: position{line: 809, col: 1, offset: 28654},
|
|
expr: &actionExpr{
|
|
pos: position{line: 809, col: 28, offset: 28681},
|
|
run: (*parser).callonMathIntBitAndExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 809, col: 28, offset: 28681},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 28, offset: 28681},
|
|
val: "intbitand",
|
|
ignoreCase: true,
|
|
want: "\"IntBitAnd\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 41, offset: 28694},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 44, offset: 28697},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 48, offset: 28701},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 809, col: 51, offset: 28704},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 809, col: 56, offset: 28709},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 67, offset: 28720},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 70, offset: 28723},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 74, offset: 28727},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 809, col: 77, offset: 28730},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 809, col: 82, offset: 28735},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 809, col: 93, offset: 28746},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 809, col: 96, offset: 28749},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitLeftShiftExpression",
|
|
pos: position{line: 810, col: 1, offset: 28845},
|
|
expr: &actionExpr{
|
|
pos: position{line: 810, col: 34, offset: 28878},
|
|
run: (*parser).callonMathIntBitLeftShiftExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 810, col: 34, offset: 28878},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 34, offset: 28878},
|
|
val: "intbitleftshift",
|
|
ignoreCase: true,
|
|
want: "\"IntBitLeftShift\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 53, offset: 28897},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 56, offset: 28900},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 60, offset: 28904},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 810, col: 63, offset: 28907},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 810, col: 68, offset: 28912},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 79, offset: 28923},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 82, offset: 28926},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 86, offset: 28930},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 810, col: 89, offset: 28933},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 810, col: 94, offset: 28938},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 810, col: 105, offset: 28949},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 810, col: 108, offset: 28952},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitOrExpression",
|
|
pos: position{line: 811, col: 1, offset: 29054},
|
|
expr: &actionExpr{
|
|
pos: position{line: 811, col: 27, offset: 29080},
|
|
run: (*parser).callonMathIntBitOrExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 811, col: 27, offset: 29080},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 27, offset: 29080},
|
|
val: "intbitor",
|
|
ignoreCase: true,
|
|
want: "\"IntBitOr\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 39, offset: 29092},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 42, offset: 29095},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 46, offset: 29099},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 811, col: 49, offset: 29102},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 811, col: 54, offset: 29107},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 65, offset: 29118},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 68, offset: 29121},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 72, offset: 29125},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 811, col: 75, offset: 29128},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 811, col: 80, offset: 29133},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 811, col: 91, offset: 29144},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 811, col: 94, offset: 29147},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitRightShiftExpression",
|
|
pos: position{line: 812, col: 1, offset: 29242},
|
|
expr: &actionExpr{
|
|
pos: position{line: 812, col: 35, offset: 29276},
|
|
run: (*parser).callonMathIntBitRightShiftExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 812, col: 35, offset: 29276},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 812, col: 35, offset: 29276},
|
|
val: "intbitrightshift",
|
|
ignoreCase: true,
|
|
want: "\"IntBitRightShift\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 812, col: 55, offset: 29296},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 812, col: 58, offset: 29299},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 812, col: 62, offset: 29303},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 812, col: 65, offset: 29306},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 812, col: 70, offset: 29311},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 812, col: 81, offset: 29322},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 812, col: 84, offset: 29325},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 812, col: 88, offset: 29329},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 812, col: 91, offset: 29332},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 812, col: 96, offset: 29337},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 812, col: 107, offset: 29348},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 812, col: 110, offset: 29351},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntBitXorExpression",
|
|
pos: position{line: 813, col: 1, offset: 29454},
|
|
expr: &actionExpr{
|
|
pos: position{line: 813, col: 28, offset: 29481},
|
|
run: (*parser).callonMathIntBitXorExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 813, col: 28, offset: 29481},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 28, offset: 29481},
|
|
val: "intbitxor",
|
|
ignoreCase: true,
|
|
want: "\"IntBitXor\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 41, offset: 29494},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 44, offset: 29497},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 48, offset: 29501},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 813, col: 51, offset: 29504},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 813, col: 56, offset: 29509},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 67, offset: 29520},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 70, offset: 29523},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 74, offset: 29527},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 813, col: 77, offset: 29530},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 813, col: 82, offset: 29535},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 813, col: 93, offset: 29546},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 813, col: 96, offset: 29549},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntDivExpression",
|
|
pos: position{line: 814, col: 1, offset: 29645},
|
|
expr: &actionExpr{
|
|
pos: position{line: 814, col: 25, offset: 29669},
|
|
run: (*parser).callonMathIntDivExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 814, col: 25, offset: 29669},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 814, col: 25, offset: 29669},
|
|
val: "intdiv",
|
|
ignoreCase: true,
|
|
want: "\"IntDiv\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 814, col: 35, offset: 29679},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 814, col: 38, offset: 29682},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 814, col: 42, offset: 29686},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 814, col: 45, offset: 29689},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 814, col: 50, offset: 29694},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 814, col: 61, offset: 29705},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 814, col: 64, offset: 29708},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 814, col: 68, offset: 29712},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 814, col: 71, offset: 29715},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 814, col: 76, offset: 29720},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 814, col: 87, offset: 29731},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 814, col: 90, offset: 29734},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntModExpression",
|
|
pos: position{line: 815, col: 1, offset: 29827},
|
|
expr: &actionExpr{
|
|
pos: position{line: 815, col: 25, offset: 29851},
|
|
run: (*parser).callonMathIntModExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 815, col: 25, offset: 29851},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 815, col: 25, offset: 29851},
|
|
val: "intmod",
|
|
ignoreCase: true,
|
|
want: "\"IntMod\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 815, col: 35, offset: 29861},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 815, col: 38, offset: 29864},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 815, col: 42, offset: 29868},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 815, col: 45, offset: 29871},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 815, col: 50, offset: 29876},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 815, col: 61, offset: 29887},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 815, col: 64, offset: 29890},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 815, col: 68, offset: 29894},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 815, col: 71, offset: 29897},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 815, col: 76, offset: 29902},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 815, col: 87, offset: 29913},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 815, col: 90, offset: 29916},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntMulExpression",
|
|
pos: position{line: 816, col: 1, offset: 30009},
|
|
expr: &actionExpr{
|
|
pos: position{line: 816, col: 25, offset: 30033},
|
|
run: (*parser).callonMathIntMulExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 816, col: 25, offset: 30033},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 25, offset: 30033},
|
|
val: "intmul",
|
|
ignoreCase: true,
|
|
want: "\"IntMul\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 35, offset: 30043},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 38, offset: 30046},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 42, offset: 30050},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 816, col: 45, offset: 30053},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 816, col: 50, offset: 30058},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 61, offset: 30069},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 64, offset: 30072},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 68, offset: 30076},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 816, col: 71, offset: 30079},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 816, col: 76, offset: 30084},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 816, col: 87, offset: 30095},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 816, col: 90, offset: 30098},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathIntSubExpression",
|
|
pos: position{line: 817, col: 1, offset: 30191},
|
|
expr: &actionExpr{
|
|
pos: position{line: 817, col: 25, offset: 30215},
|
|
run: (*parser).callonMathIntSubExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 817, col: 25, offset: 30215},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 817, col: 25, offset: 30215},
|
|
val: "intsub",
|
|
ignoreCase: true,
|
|
want: "\"IntSub\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 817, col: 35, offset: 30225},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 817, col: 38, offset: 30228},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 817, col: 42, offset: 30232},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 817, col: 45, offset: 30235},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 817, col: 50, offset: 30240},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 817, col: 61, offset: 30251},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 817, col: 64, offset: 30254},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 817, col: 68, offset: 30258},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 817, col: 71, offset: 30261},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 817, col: 76, offset: 30266},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 817, col: 87, offset: 30277},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 817, col: 90, offset: 30280},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathPowerExpression",
|
|
pos: position{line: 818, col: 1, offset: 30373},
|
|
expr: &actionExpr{
|
|
pos: position{line: 818, col: 24, offset: 30396},
|
|
run: (*parser).callonMathPowerExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 818, col: 24, offset: 30396},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 818, col: 24, offset: 30396},
|
|
val: "power",
|
|
ignoreCase: true,
|
|
want: "\"POWER\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 818, col: 33, offset: 30405},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 818, col: 36, offset: 30408},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 818, col: 40, offset: 30412},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 818, col: 43, offset: 30415},
|
|
label: "set1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 818, col: 48, offset: 30420},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 818, col: 59, offset: 30431},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 818, col: 62, offset: 30434},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 818, col: 66, offset: 30438},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 818, col: 69, offset: 30441},
|
|
label: "set2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 818, col: 74, offset: 30446},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 818, col: 85, offset: 30457},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 818, col: 88, offset: 30460},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathLogExpression",
|
|
pos: position{line: 820, col: 1, offset: 30553},
|
|
expr: &actionExpr{
|
|
pos: position{line: 820, col: 22, offset: 30574},
|
|
run: (*parser).callonMathLogExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 820, col: 22, offset: 30574},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 22, offset: 30574},
|
|
val: "log",
|
|
ignoreCase: true,
|
|
want: "\"LOG\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 29, offset: 30581},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 32, offset: 30584},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 36, offset: 30588},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 820, col: 39, offset: 30591},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 820, col: 43, offset: 30595},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 820, col: 54, offset: 30606},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 820, col: 61, offset: 30613},
|
|
expr: &actionExpr{
|
|
pos: position{line: 820, col: 62, offset: 30614},
|
|
run: (*parser).callonMathLogExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 820, col: 62, offset: 30614},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 62, offset: 30614},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 65, offset: 30617},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 69, offset: 30621},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 820, col: 72, offset: 30624},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 820, col: 75, offset: 30627},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 820, col: 107, offset: 30659},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 820, col: 110, offset: 30662},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathNumberBinExpression",
|
|
pos: position{line: 823, col: 1, offset: 30784},
|
|
expr: &actionExpr{
|
|
pos: position{line: 823, col: 28, offset: 30811},
|
|
run: (*parser).callonMathNumberBinExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 823, col: 28, offset: 30811},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 823, col: 28, offset: 30811},
|
|
val: "numberbin",
|
|
ignoreCase: true,
|
|
want: "\"NumberBin\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 823, col: 41, offset: 30824},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 823, col: 44, offset: 30827},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 823, col: 48, offset: 30831},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 823, col: 51, offset: 30834},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 823, col: 55, offset: 30838},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 823, col: 66, offset: 30849},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 823, col: 73, offset: 30856},
|
|
expr: &actionExpr{
|
|
pos: position{line: 823, col: 74, offset: 30857},
|
|
run: (*parser).callonMathNumberBinExpression11,
|
|
expr: &seqExpr{
|
|
pos: position{line: 823, col: 74, offset: 30857},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 823, col: 74, offset: 30857},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 823, col: 77, offset: 30860},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 823, col: 81, offset: 30864},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 823, col: 84, offset: 30867},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 823, col: 87, offset: 30870},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 823, col: 119, offset: 30902},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 823, col: 122, offset: 30905},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathPiExpression",
|
|
pos: position{line: 826, col: 1, offset: 31033},
|
|
expr: &actionExpr{
|
|
pos: position{line: 826, col: 21, offset: 31053},
|
|
run: (*parser).callonMathPiExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 826, col: 21, offset: 31053},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 826, col: 21, offset: 31053},
|
|
val: "pi",
|
|
ignoreCase: true,
|
|
want: "\"PI\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 826, col: 27, offset: 31059},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 826, col: 30, offset: 31062},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 826, col: 34, offset: 31066},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 826, col: 37, offset: 31069},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MathRandExpression",
|
|
pos: position{line: 827, col: 1, offset: 31148},
|
|
expr: &actionExpr{
|
|
pos: position{line: 827, col: 23, offset: 31170},
|
|
run: (*parser).callonMathRandExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 827, col: 23, offset: 31170},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 827, col: 23, offset: 31170},
|
|
val: "rand",
|
|
ignoreCase: true,
|
|
want: "\"RAND\"i",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 827, col: 31, offset: 31178},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 827, col: 34, offset: 31181},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 827, col: 38, offset: 31185},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 827, col: 41, offset: 31188},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "InFunction",
|
|
pos: position{line: 829, col: 1, offset: 31270},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 829, col: 15, offset: 31284},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 829, col: 15, offset: 31284},
|
|
run: (*parser).callonInFunction2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 829, col: 15, offset: 31284},
|
|
exprs: []any{
|
|
&labeledExpr{
|
|
pos: position{line: 829, col: 15, offset: 31284},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 829, col: 19, offset: 31288},
|
|
name: "SelectProperty",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 34, offset: 31303},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 37, offset: 31306},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 40, offset: 31309},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 829, col: 43, offset: 31312},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 47, offset: 31316},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 829, col: 50, offset: 31319},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 829, col: 54, offset: 31323},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 829, col: 65, offset: 31334},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 829, col: 72, offset: 31341},
|
|
expr: &actionExpr{
|
|
pos: position{line: 829, col: 73, offset: 31342},
|
|
run: (*parser).callonInFunction15,
|
|
expr: &seqExpr{
|
|
pos: position{line: 829, col: 73, offset: 31342},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 73, offset: 31342},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 829, col: 76, offset: 31345},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 80, offset: 31349},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 829, col: 83, offset: 31352},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 829, col: 86, offset: 31355},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 829, col: 118, offset: 31387},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 829, col: 121, offset: 31390},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 831, col: 5, offset: 31514},
|
|
run: (*parser).callonInFunction24,
|
|
expr: &seqExpr{
|
|
pos: position{line: 831, col: 5, offset: 31514},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 831, col: 5, offset: 31514},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 9, offset: 31518},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 831, col: 12, offset: 31521},
|
|
label: "ex1",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 831, col: 16, offset: 31525},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 27, offset: 31536},
|
|
name: "ws",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 30, offset: 31539},
|
|
name: "In",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 33, offset: 31542},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 831, col: 36, offset: 31545},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 40, offset: 31549},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 831, col: 43, offset: 31552},
|
|
label: "ex2",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 831, col: 47, offset: 31556},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 831, col: 58, offset: 31567},
|
|
label: "others",
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 831, col: 65, offset: 31574},
|
|
expr: &actionExpr{
|
|
pos: position{line: 831, col: 66, offset: 31575},
|
|
run: (*parser).callonInFunction39,
|
|
expr: &seqExpr{
|
|
pos: position{line: 831, col: 66, offset: 31575},
|
|
exprs: []any{
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 66, offset: 31575},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 831, col: 69, offset: 31578},
|
|
val: ",",
|
|
ignoreCase: false,
|
|
want: "\",\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 73, offset: 31582},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 831, col: 76, offset: 31585},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 831, col: 79, offset: 31588},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 111, offset: 31620},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 831, col: 114, offset: 31623},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 831, col: 118, offset: 31627},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 831, col: 121, offset: 31630},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "AvgAggregateExpression",
|
|
pos: position{line: 835, col: 1, offset: 31753},
|
|
expr: &actionExpr{
|
|
pos: position{line: 835, col: 29, offset: 31781},
|
|
run: (*parser).callonAvgAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 835, col: 29, offset: 31781},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 835, col: 29, offset: 31781},
|
|
val: "avg",
|
|
ignoreCase: true,
|
|
want: "\"AVG\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 835, col: 36, offset: 31788},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 835, col: 40, offset: 31792},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 835, col: 43, offset: 31795},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 835, col: 46, offset: 31798},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 835, col: 58, offset: 31810},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 835, col: 61, offset: 31813},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "CountAggregateExpression",
|
|
pos: position{line: 839, col: 1, offset: 31905},
|
|
expr: &actionExpr{
|
|
pos: position{line: 839, col: 29, offset: 31933},
|
|
run: (*parser).callonCountAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 839, col: 29, offset: 31933},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 839, col: 29, offset: 31933},
|
|
val: "count",
|
|
ignoreCase: true,
|
|
want: "\"COUNT\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 839, col: 38, offset: 31942},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 839, col: 42, offset: 31946},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 839, col: 45, offset: 31949},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 839, col: 48, offset: 31952},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 839, col: 59, offset: 31963},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 839, col: 62, offset: 31966},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MaxAggregateExpression",
|
|
pos: position{line: 843, col: 1, offset: 32060},
|
|
expr: &actionExpr{
|
|
pos: position{line: 843, col: 29, offset: 32088},
|
|
run: (*parser).callonMaxAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 843, col: 29, offset: 32088},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 843, col: 29, offset: 32088},
|
|
val: "max",
|
|
ignoreCase: true,
|
|
want: "\"MAX\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 843, col: 36, offset: 32095},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 843, col: 40, offset: 32099},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 843, col: 43, offset: 32102},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 843, col: 46, offset: 32105},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 843, col: 57, offset: 32116},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 843, col: 60, offset: 32119},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "MinAggregateExpression",
|
|
pos: position{line: 847, col: 1, offset: 32211},
|
|
expr: &actionExpr{
|
|
pos: position{line: 847, col: 29, offset: 32239},
|
|
run: (*parser).callonMinAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 847, col: 29, offset: 32239},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 847, col: 29, offset: 32239},
|
|
val: "min",
|
|
ignoreCase: true,
|
|
want: "\"MIN\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 847, col: 36, offset: 32246},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 847, col: 40, offset: 32250},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 847, col: 43, offset: 32253},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 847, col: 46, offset: 32256},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 847, col: 57, offset: 32267},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 847, col: 60, offset: 32270},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "SumAggregateExpression",
|
|
pos: position{line: 851, col: 1, offset: 32362},
|
|
expr: &actionExpr{
|
|
pos: position{line: 851, col: 29, offset: 32390},
|
|
run: (*parser).callonSumAggregateExpression1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 851, col: 29, offset: 32390},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 851, col: 29, offset: 32390},
|
|
val: "sum",
|
|
ignoreCase: true,
|
|
want: "\"SUM\"i",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 851, col: 36, offset: 32397},
|
|
val: "(",
|
|
ignoreCase: false,
|
|
want: "\"(\"",
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 851, col: 40, offset: 32401},
|
|
name: "ws",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 851, col: 43, offset: 32404},
|
|
label: "ex",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 851, col: 46, offset: 32407},
|
|
name: "SelectItem",
|
|
},
|
|
},
|
|
&ruleRefExpr{
|
|
pos: position{line: 851, col: 57, offset: 32418},
|
|
name: "ws",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 851, col: 60, offset: 32421},
|
|
val: ")",
|
|
ignoreCase: false,
|
|
want: "\")\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Integer",
|
|
pos: position{line: 855, col: 1, offset: 32513},
|
|
expr: &actionExpr{
|
|
pos: position{line: 855, col: 12, offset: 32524},
|
|
run: (*parser).callonInteger1,
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 855, col: 12, offset: 32524},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 855, col: 12, offset: 32524},
|
|
val: "[0-9]",
|
|
ranges: []rune{'0', '9'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "StringCharacter",
|
|
pos: position{line: 859, col: 1, offset: 32576},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 859, col: 20, offset: 32595},
|
|
alternatives: []any{
|
|
&actionExpr{
|
|
pos: position{line: 859, col: 20, offset: 32595},
|
|
run: (*parser).callonStringCharacter2,
|
|
expr: &seqExpr{
|
|
pos: position{line: 859, col: 20, offset: 32595},
|
|
exprs: []any{
|
|
¬Expr{
|
|
pos: position{line: 859, col: 20, offset: 32595},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 859, col: 22, offset: 32597},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 859, col: 22, offset: 32597},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 859, col: 28, offset: 32603},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&anyMatcher{
|
|
line: 859, col: 34, offset: 32609,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 860, col: 5, offset: 32646},
|
|
run: (*parser).callonStringCharacter9,
|
|
expr: &seqExpr{
|
|
pos: position{line: 860, col: 5, offset: 32646},
|
|
exprs: []any{
|
|
&litMatcher{
|
|
pos: position{line: 860, col: 5, offset: 32646},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 860, col: 10, offset: 32651},
|
|
label: "seq",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 860, col: 14, offset: 32655},
|
|
name: "EscapeSequenceCharacter",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "EscapeSequenceCharacter",
|
|
pos: position{line: 862, col: 1, offset: 32700},
|
|
expr: &labeledExpr{
|
|
pos: position{line: 862, col: 28, offset: 32727},
|
|
label: "char",
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 862, col: 33, offset: 32732},
|
|
name: "EscapeCharacter",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "EscapeCharacter",
|
|
pos: position{line: 864, col: 1, offset: 32749},
|
|
expr: &choiceExpr{
|
|
pos: position{line: 864, col: 20, offset: 32768},
|
|
alternatives: []any{
|
|
&litMatcher{
|
|
pos: position{line: 864, col: 20, offset: 32768},
|
|
val: "'",
|
|
ignoreCase: false,
|
|
want: "\"'\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 865, col: 5, offset: 32776},
|
|
val: "\"",
|
|
ignoreCase: false,
|
|
want: "\"\\\"\"",
|
|
},
|
|
&litMatcher{
|
|
pos: position{line: 866, col: 5, offset: 32784},
|
|
val: "\\",
|
|
ignoreCase: false,
|
|
want: "\"\\\\\"",
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 867, col: 5, offset: 32793},
|
|
run: (*parser).callonEscapeCharacter5,
|
|
expr: &litMatcher{
|
|
pos: position{line: 867, col: 5, offset: 32793},
|
|
val: "b",
|
|
ignoreCase: false,
|
|
want: "\"b\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 868, col: 5, offset: 32822},
|
|
run: (*parser).callonEscapeCharacter7,
|
|
expr: &litMatcher{
|
|
pos: position{line: 868, col: 5, offset: 32822},
|
|
val: "f",
|
|
ignoreCase: false,
|
|
want: "\"f\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 869, col: 5, offset: 32851},
|
|
run: (*parser).callonEscapeCharacter9,
|
|
expr: &litMatcher{
|
|
pos: position{line: 869, col: 5, offset: 32851},
|
|
val: "n",
|
|
ignoreCase: false,
|
|
want: "\"n\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 870, col: 5, offset: 32880},
|
|
run: (*parser).callonEscapeCharacter11,
|
|
expr: &litMatcher{
|
|
pos: position{line: 870, col: 5, offset: 32880},
|
|
val: "r",
|
|
ignoreCase: false,
|
|
want: "\"r\"",
|
|
},
|
|
},
|
|
&actionExpr{
|
|
pos: position{line: 871, col: 5, offset: 32909},
|
|
run: (*parser).callonEscapeCharacter13,
|
|
expr: &litMatcher{
|
|
pos: position{line: 871, col: 5, offset: 32909},
|
|
val: "t",
|
|
ignoreCase: false,
|
|
want: "\"t\"",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "non_escape_character",
|
|
pos: position{line: 873, col: 1, offset: 32935},
|
|
expr: &actionExpr{
|
|
pos: position{line: 873, col: 25, offset: 32959},
|
|
run: (*parser).callonnon_escape_character1,
|
|
expr: &seqExpr{
|
|
pos: position{line: 873, col: 25, offset: 32959},
|
|
exprs: []any{
|
|
¬Expr{
|
|
pos: position{line: 873, col: 25, offset: 32959},
|
|
expr: &ruleRefExpr{
|
|
pos: position{line: 873, col: 27, offset: 32961},
|
|
name: "escape_character",
|
|
},
|
|
},
|
|
&labeledExpr{
|
|
pos: position{line: 873, col: 45, offset: 32979},
|
|
label: "char",
|
|
expr: &anyMatcher{
|
|
line: 873, col: 50, offset: 32984,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "ws",
|
|
pos: position{line: 876, col: 1, offset: 33023},
|
|
expr: &zeroOrMoreExpr{
|
|
pos: position{line: 876, col: 7, offset: 33029},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 876, col: 7, offset: 33029},
|
|
val: "[ \\t\\n\\r]",
|
|
chars: []rune{' ', '\t', '\n', '\r'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "wss",
|
|
pos: position{line: 878, col: 1, offset: 33041},
|
|
expr: &oneOrMoreExpr{
|
|
pos: position{line: 878, col: 8, offset: 33048},
|
|
expr: &charClassMatcher{
|
|
pos: position{line: 878, col: 8, offset: 33048},
|
|
val: "[ \\t\\n\\r]",
|
|
chars: []rune{' ', '\t', '\n', '\r'},
|
|
ignoreCase: false,
|
|
inverted: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "EOF",
|
|
pos: position{line: 880, col: 1, offset: 33060},
|
|
expr: ¬Expr{
|
|
pos: position{line: 880, col: 8, offset: 33067},
|
|
expr: &anyMatcher{
|
|
line: 880, col: 9, offset: 33068,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
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(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithParentheses2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithParentheses2(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onSelectItemWithParentheses10(inv, ex any) (any, error) {
|
|
if inv != nil {
|
|
ex1 := ex.(parsers.SelectItem)
|
|
ex1.Invert = true
|
|
return ex1, nil
|
|
}
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithParentheses10() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithParentheses10(stack["inv"], stack["ex"])
|
|
}
|
|
|
|
func (c *current) onSelectItemWithParentheses19(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonSelectItemWithParentheses19() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onSelectItemWithParentheses19(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) onStringLiteral1(chars any) (any, error) {
|
|
return parsers.Constant{Type: parsers.ConstantTypeString, Value: joinStrings(chars.([]interface{}))}, nil
|
|
}
|
|
|
|
func (p *parser) callonStringLiteral1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onStringLiteral1(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) onUDFFunction1(functionName, arguments any) (any, error) {
|
|
if arguments == nil {
|
|
return createUDFCall(functionName, []interface{}{})
|
|
}
|
|
return createUDFCall(functionName, arguments.([]interface{}))
|
|
}
|
|
|
|
func (p *parser) callonUDFFunction1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onUDFFunction1(stack["functionName"], stack["arguments"])
|
|
}
|
|
|
|
func (c *current) onUDFArgumentList7(arg any) (any, error) {
|
|
return arg, nil
|
|
}
|
|
|
|
func (p *parser) callonUDFArgumentList7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onUDFArgumentList7(stack["arg"])
|
|
}
|
|
|
|
func (c *current) onUDFArgumentList1(arg1, others any) (any, error) {
|
|
if others == nil {
|
|
return []interface{}{arg1}, nil
|
|
}
|
|
return append([]interface{}{arg1}, others.([]interface{})...), nil
|
|
}
|
|
|
|
func (p *parser) callonUDFArgumentList1() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onUDFArgumentList1(stack["arg1"], stack["others"])
|
|
}
|
|
|
|
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 "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) onInFunction15(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonInFunction15() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction15(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onInFunction2(ex1, ex2, others any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIn, append([]interface{}{ex1, ex2}, others.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonInFunction2() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction2(stack["ex1"], stack["ex2"], stack["others"])
|
|
}
|
|
|
|
func (c *current) onInFunction39(ex any) (any, error) {
|
|
return ex, nil
|
|
}
|
|
|
|
func (p *parser) callonInFunction39() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction39(stack["ex"])
|
|
}
|
|
|
|
func (c *current) onInFunction24(ex1, ex2, others any) (any, error) {
|
|
return createFunctionCall(parsers.FunctionCallIn, append([]interface{}{ex1, ex2}, others.([]interface{})...))
|
|
}
|
|
|
|
func (p *parser) callonInFunction24() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onInFunction24(stack["ex1"], 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) onEscapeCharacter5() (any, error) {
|
|
return "\b", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter5() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter5()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter7() (any, error) {
|
|
return "\f", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter7() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter7()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter9() (any, error) {
|
|
return "\n", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter9() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter9()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter11() (any, error) {
|
|
return "\r", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter11() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter11()
|
|
}
|
|
|
|
func (c *current) onEscapeCharacter13() (any, error) {
|
|
return "\t", nil
|
|
}
|
|
|
|
func (p *parser) callonEscapeCharacter13() (any, error) {
|
|
stack := p.vstack[len(p.vstack)-1]
|
|
_ = stack
|
|
return p.cur.onEscapeCharacter13()
|
|
}
|
|
|
|
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
|
|
}
|