@adaptabletools/adaptable-cjs 18.0.0-canary.8 → 18.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +18 -20
- package/base.css.map +1 -1
- package/index.css +22 -20
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +10 -4
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +3 -2
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +3 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +15 -14
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +2 -0
- package/src/AdaptableOptions/AdaptablePlugin.js +2 -0
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +7 -0
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +94 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +9 -4
- package/src/AdaptableOptions/CommentOptions.d.ts +20 -9
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +94 -0
- package/src/AdaptableOptions/CustomSortOptions.d.ts +2 -2
- package/src/AdaptableOptions/DataImportOptions.d.ts +2 -2
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +2 -2
- package/src/AdaptableOptions/GroupingOptions.d.ts +0 -26
- package/src/AdaptableOptions/NoteOptions.d.ts +12 -3
- package/src/AdaptableOptions/PredicateOptions.d.ts +2 -2
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
- package/src/AdaptableOptions/StateOptions.d.ts +6 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
- package/src/Api/AdaptableApi.d.ts +16 -6
- package/src/Api/ColumnApi.d.ts +13 -0
- package/src/Api/ColumnMenuApi.d.ts +13 -0
- package/src/Api/{ScopeApi.d.ts → ColumnScopeApi.d.ts} +36 -26
- package/src/Api/CommentApi.d.ts +20 -22
- package/src/Api/ConfigApi.d.ts +4 -5
- package/src/Api/ContextMenuApi.d.ts +9 -0
- package/src/Api/EventApi.d.ts +7 -9
- package/src/Api/Events/CommentChanged.d.ts +11 -0
- package/src/Api/Events/CommentChanged.js +2 -0
- package/src/Api/Events/GridDataChanged.d.ts +1 -1
- package/src/Api/FlashingCellApi.d.ts +2 -2
- package/src/Api/GridApi.d.ts +35 -3
- package/src/Api/Implementation/ActionColumnApiImpl.js +3 -6
- package/src/Api/Implementation/ActionRowApiImpl.js +3 -7
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +7 -5
- package/src/Api/Implementation/AdaptableApiImpl.js +9 -5
- package/src/Api/Implementation/AlertApiImpl.js +8 -13
- package/src/Api/Implementation/ApiBase.d.ts +6 -4
- package/src/Api/Implementation/ApiBase.js +11 -5
- package/src/Api/Implementation/CalendarApiImpl.js +1 -6
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -5
- package/src/Api/Implementation/CellSummaryApiImpl.js +2 -23
- package/src/Api/Implementation/ChartingApiImpl.js +3 -3
- package/src/Api/Implementation/ColumnApiImpl.d.ts +5 -0
- package/src/Api/Implementation/ColumnApiImpl.js +48 -16
- package/src/Api/Implementation/ColumnFilterApiImpl.js +7 -7
- package/src/Api/Implementation/ColumnMenuApiImpl.d.ts +8 -0
- package/src/Api/Implementation/ColumnMenuApiImpl.js +16 -0
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +33 -0
- package/src/Api/Implementation/{ScopeApiImpl.js → ColumnScopeApiImpl.js} +67 -21
- package/src/Api/Implementation/CommentsApiImpl.d.ts +8 -5
- package/src/Api/Implementation/CommentsApiImpl.js +10 -5
- package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ConfigApiImpl.js +27 -28
- package/src/Api/Implementation/ContextMenuApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ContextMenuApiImpl.js +13 -0
- package/src/Api/Implementation/DashboardApiImpl.js +1 -6
- package/src/Api/Implementation/ExportApiImpl.js +5 -10
- package/src/Api/Implementation/ExpressionApiImpl.js +14 -19
- package/src/Api/Implementation/Fdc3ApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +2 -2
- package/src/Api/Implementation/FlashingCellApiImpl.js +3 -8
- package/src/Api/Implementation/FormatColumnApiImpl.js +4 -4
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +9 -1
- package/src/Api/Implementation/GridApiImpl.js +63 -9
- package/src/Api/Implementation/LayoutApiImpl.d.ts +4 -11
- package/src/Api/Implementation/LayoutApiImpl.js +19 -27
- package/src/Api/Implementation/NoteApiImpl.d.ts +18 -0
- package/src/Api/Implementation/NoteApiImpl.js +45 -0
- package/src/Api/Implementation/OptionsApiImpl.d.ts +6 -5
- package/src/Api/Implementation/OptionsApiImpl.js +7 -4
- package/src/Api/Implementation/PredicateApiImpl.js +2 -2
- package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
- package/src/Api/Implementation/TeamSharingApiImpl.js +3 -15
- package/src/Api/Implementation/ThemeApiImpl.js +2 -7
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +14 -8
- package/src/Api/Implementation/UserInterfaceApiImpl.js +32 -27
- package/src/Api/Internal/ActionRowInternalApi.d.ts +1 -0
- package/src/Api/Internal/ActionRowInternalApi.js +19 -46
- package/src/Api/Internal/AdaptableInternalApi.d.ts +3 -4
- package/src/Api/Internal/AdaptableInternalApi.js +16 -30
- package/src/Api/Internal/AlertInternalApi.d.ts +2 -2
- package/src/Api/Internal/AlertInternalApi.js +7 -20
- package/src/Api/Internal/CalculatedColumnInternalApi.js +11 -17
- package/src/Api/Internal/ChartingInternalApi.js +13 -13
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +1 -0
- package/src/Api/Internal/ColumnFilterInternalApi.js +24 -30
- package/src/Api/Internal/ColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/ColumnInternalApi.js +8 -1
- package/src/Api/Internal/CommentsInternalApi.d.ts +4 -0
- package/src/Api/Internal/CommentsInternalApi.js +18 -0
- package/src/Api/Internal/CustomSortInternalApi.js +1 -1
- package/src/Api/Internal/DashboardInternalApi.js +5 -11
- package/src/Api/Internal/DataImportInternalApi.js +3 -9
- package/src/Api/Internal/DataSetInternalApi.js +2 -7
- package/src/Api/Internal/ExportInternalApi.d.ts +2 -1
- package/src/Api/Internal/ExportInternalApi.js +8 -5
- package/src/Api/Internal/ExpressionInternalApi.js +3 -13
- package/src/Api/Internal/Fdc3InternalApi.js +3 -12
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +3 -6
- package/src/Api/Internal/FormatColumnInternalApi.js +38 -30
- package/src/Api/Internal/FreeTextColumnInternalApi.js +5 -4
- package/src/Api/Internal/GridFilterInternalApi.d.ts +5 -0
- package/src/Api/Internal/GridFilterInternalApi.js +8 -8
- package/src/Api/Internal/GridInternalApi.d.ts +2 -0
- package/src/Api/Internal/GridInternalApi.js +28 -40
- package/src/Api/Internal/LayoutInternalApi.d.ts +2 -0
- package/src/Api/Internal/LayoutInternalApi.js +26 -19
- package/src/Api/Internal/NoteInternalApi.d.ts +4 -0
- package/src/Api/Internal/NoteInternalApi.js +18 -0
- package/src/Api/Internal/PredicateInternalApi.d.ts +6 -6
- package/src/Api/Internal/PredicateInternalApi.js +5 -40
- package/src/Api/Internal/ScheduleInternalApi.js +1 -6
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +2 -2
- package/src/Api/Internal/StyledColumnInternalApi.js +8 -9
- package/src/Api/Internal/SystemStatusInternalApi.js +1 -7
- package/src/Api/Internal/TeamSharingInternalApi.js +2 -7
- package/src/Api/Internal/ThemeInternalApi.js +1 -1
- package/src/Api/Internal/UserInterfaceInternalApi.js +1 -1
- package/src/Api/LayoutApi.d.ts +15 -15
- package/src/Api/NoteApi.d.ts +48 -0
- package/src/Api/NoteApi.js +2 -0
- package/src/Api/OptionsApi.d.ts +14 -10
- package/src/Api/UserInterfaceApi.d.ts +15 -13
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
- package/src/PredefinedConfig/AlertState.d.ts +2 -2
- package/src/PredefinedConfig/CommentState.d.ts +27 -23
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +4 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -2
- package/src/PredefinedConfig/Common/CellSummary.d.ts +5 -14
- package/src/PredefinedConfig/Common/{AdaptableScope.d.ts → ColumnScope.d.ts} +4 -1
- package/src/PredefinedConfig/Common/ColumnScope.js +2 -0
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +1 -5
- package/src/PredefinedConfig/Common/Enums.d.ts +4 -1
- package/src/PredefinedConfig/Common/Enums.js +3 -0
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +2 -2
- package/src/PredefinedConfig/Common/Menu.d.ts +39 -4
- package/src/PredefinedConfig/Common/Menu.js +126 -0
- package/src/PredefinedConfig/Common/RowScope.d.ts +17 -0
- package/src/PredefinedConfig/Common/RowScope.js +2 -0
- package/src/PredefinedConfig/Common/RowSummary.d.ts +21 -0
- package/src/PredefinedConfig/Common/RowSummary.js +20 -0
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +30 -0
- package/src/PredefinedConfig/Common/TransposeConfig.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +4 -1
- package/src/PredefinedConfig/ExportState.d.ts +2 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +9 -5
- package/src/PredefinedConfig/LayoutState.d.ts +6 -1
- package/src/PredefinedConfig/{NotesState.d.ts → NoteState.d.ts} +4 -4
- package/src/PredefinedConfig/NoteState.js +2 -0
- package/src/PredefinedConfig/PlusMinusState.d.ts +2 -2
- package/src/PredefinedConfig/PopupState.d.ts +1 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -2
- package/src/PredefinedConfig/Selection/GridCell.d.ts +13 -0
- package/src/PredefinedConfig/ShortcutState.d.ts +2 -2
- package/src/PredefinedConfig/StyledColumnState.d.ts +5 -5
- package/src/PredefinedConfig/SystemState.d.ts +12 -4
- package/src/Redux/ActionsReducers/CommentsRedux.d.ts +0 -4
- package/src/Redux/ActionsReducers/CommentsRedux.js +1 -39
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +9 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +34 -11
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/{NotesRedux.js → NoteRedux.js} +31 -31
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +5 -13
- package/src/Redux/ActionsReducers/PopupRedux.js +1 -22
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +15 -4
- package/src/Redux/ActionsReducers/SystemRedux.js +27 -11
- package/src/Redux/Store/AdaptableStore.js +47 -29
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +2 -2
- package/src/Strategy/AdaptableModuleBase.d.ts +10 -10
- package/src/Strategy/AdaptableModuleBase.js +13 -16
- package/src/Strategy/AlertModule.d.ts +3 -2
- package/src/Strategy/AlertModule.js +4 -4
- package/src/Strategy/BulkUpdateModule.d.ts +3 -2
- package/src/Strategy/BulkUpdateModule.js +2 -1
- package/src/Strategy/CalculatedColumnModule.d.ts +3 -4
- package/src/Strategy/CalculatedColumnModule.js +18 -14
- package/src/Strategy/CellSummaryModule.d.ts +10 -9
- package/src/Strategy/CellSummaryModule.js +101 -83
- package/src/Strategy/ColumnFilterModule.d.ts +3 -3
- package/src/Strategy/ColumnFilterModule.js +36 -57
- package/src/Strategy/ColumnInfoModule.d.ts +3 -3
- package/src/Strategy/ColumnInfoModule.js +6 -4
- package/src/Strategy/CommentModule.d.ts +12 -0
- package/src/Strategy/CommentModule.js +75 -0
- package/src/Strategy/CustomSortModule.d.ts +1 -2
- package/src/Strategy/CustomSortModule.js +3 -2
- package/src/Strategy/DashboardModule.d.ts +3 -3
- package/src/Strategy/DashboardModule.js +10 -20
- package/src/Strategy/DataImportModule.d.ts +4 -4
- package/src/Strategy/DataImportModule.js +8 -8
- package/src/Strategy/ExportModule.d.ts +1 -2
- package/src/Strategy/ExportModule.js +56 -42
- package/src/Strategy/Fdc3Module.d.ts +1 -1
- package/src/Strategy/Fdc3Module.js +3 -13
- package/src/Strategy/FlashingCellModule.d.ts +4 -3
- package/src/Strategy/FlashingCellModule.js +10 -10
- package/src/Strategy/FormatColumnModule.d.ts +1 -1
- package/src/Strategy/FormatColumnModule.js +29 -47
- package/src/Strategy/FreeTextColumnModule.d.ts +1 -2
- package/src/Strategy/FreeTextColumnModule.js +2 -2
- package/src/Strategy/GridInfoModule.d.ts +3 -3
- package/src/Strategy/GridInfoModule.js +5 -3
- package/src/Strategy/Interface/IModule.d.ts +4 -4
- package/src/Strategy/LayoutModule.d.ts +4 -3
- package/src/Strategy/LayoutModule.js +71 -72
- package/src/Strategy/NoteModule.d.ts +10 -0
- package/src/Strategy/NoteModule.js +60 -0
- package/src/Strategy/PlusMinusModule.d.ts +1 -2
- package/src/Strategy/PlusMinusModule.js +5 -5
- package/src/Strategy/SettingsPanelModule.d.ts +3 -3
- package/src/Strategy/SettingsPanelModule.js +6 -6
- package/src/Strategy/ShortcutModule.js +1 -1
- package/src/Strategy/SmartEditModule.d.ts +3 -2
- package/src/Strategy/SmartEditModule.js +2 -1
- package/src/Strategy/StyledColumnModule.d.ts +2 -1
- package/src/Strategy/StyledColumnModule.js +42 -22
- package/src/Strategy/SystemStatusModule.d.ts +3 -3
- package/src/Strategy/SystemStatusModule.js +6 -3
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +4 -2
- package/src/Strategy/Utilities/getScopeViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getScopeViewItems.js +3 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +3 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +434 -3
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -3
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +15 -0
- package/src/Utilities/Extensions/ArrayExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/ArrayExtensions.js +6 -1
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +3 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +21 -1
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -3
- package/src/Utilities/MenuItem.d.ts +10 -7
- package/src/Utilities/MenuItem.js +6 -3
- package/src/Utilities/ObjectFactory.d.ts +3 -3
- package/src/Utilities/ObjectFactory.js +7 -25
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +4 -2
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +23 -18
- package/src/Utilities/Services/CellPopupService.js +4 -4
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/Interface/IReportService.d.ts +1 -4
- package/src/Utilities/Services/LicenseService/index.js +1 -195
- package/src/Utilities/Services/ModuleService.js +6 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/QueryLanguageService.js +4 -3
- package/src/Utilities/Services/ReportService.d.ts +7 -5
- package/src/Utilities/Services/ReportService.js +245 -26
- package/src/Utilities/Services/RowSummaryService.d.ts +26 -0
- package/src/Utilities/Services/RowSummaryService.js +160 -0
- package/src/Utilities/Services/ValidationService.js +2 -2
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +18 -0
- package/src/Utilities/license/decode.js +1 -70
- package/src/Utilities/license/hashing.js +1 -47
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +1 -1
- package/src/View/Alert/AlertEntityRow.js +1 -1
- package/src/View/Alert/Utilities/getAvailablePredicates.d.ts +2 -2
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +3 -3
- package/src/View/ColumnInfo/ColumnInfo.js +1 -1
- package/src/View/Comments/CommentsEditor.js +28 -17
- package/src/View/Comments/CommentsPopup.js +15 -7
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.d.ts +5 -0
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.js +46 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
- package/src/View/Components/CellPopup/index.d.ts +1 -0
- package/src/View/Components/CellPopup/index.js +6 -3
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.d.ts +3 -3
- package/src/View/Components/EntityRulesEditor/index.d.ts +3 -3
- package/src/View/Components/FilterForm/FilterForm.js +20 -12
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -8
- package/src/View/Components/FilterForm/QuickFilterValues.js +39 -23
- package/src/View/Components/NewScopeComponent.d.ts +5 -5
- package/src/View/Components/NewScopeComponent.js +36 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -1
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +10 -1
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +7 -10
- package/src/View/Components/RangesComponent.d.ts +2 -2
- package/src/View/Components/RangesComponent.js +1 -1
- package/src/View/Components/Selectors/PermittedValuesSelector.js +1 -1
- package/src/View/Components/SharedProps/WizardScopeState.d.ts +2 -2
- package/src/View/Components/ValueSelector/index.d.ts +1 -0
- package/src/View/Components/ValueSelector/index.js +2 -2
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +4 -2
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +20 -7
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +27 -12
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +3 -1
- package/src/View/GridFilter/GridFilterViewPanel.js +3 -3
- package/src/View/GridFilter/useGridFilterExpressionEditor.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -1
- package/src/View/Layout/TransposedPopup.js +27 -25
- package/src/View/Layout/Wizard/LayoutWizard.js +38 -3
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +18 -2
- package/src/View/Layout/Wizard/sections/RowSummarySection.d.ts +9 -0
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +181 -0
- package/src/View/License/LicenseWatermark.js +1 -66
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +16 -11
- package/src/View/PlusMinus/PlusMinusSummary.js +2 -2
- package/src/View/SmartEdit/SmartEditPopup.js +1 -1
- package/src/View/SpecialColumnSettingsWizardStep.js +4 -4
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +5 -7
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +38 -14
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +1 -1
- package/src/agGrid/ActionColumnRenderer.js +40 -4
- package/src/agGrid/AdaptableAgGrid.d.ts +21 -12
- package/src/agGrid/AdaptableAgGrid.js +313 -225
- package/src/agGrid/AgGridAdapter.d.ts +5 -2
- package/src/agGrid/AgGridAdapter.js +20 -0
- package/src/agGrid/AgGridColumnAdapter.d.ts +1 -3
- package/src/agGrid/AgGridColumnAdapter.js +52 -70
- package/src/agGrid/AgGridMenuAdapter.d.ts +25 -8
- package/src/agGrid/AgGridMenuAdapter.js +405 -74
- package/src/agGrid/AgGridOptionsService.d.ts +4 -1
- package/src/agGrid/AgGridOptionsService.js +22 -0
- package/src/agGrid/BadgeRenderer.d.ts +2 -2
- package/src/agGrid/BadgeRenderer.js +24 -11
- package/src/agGrid/PercentBarRenderer.js +2 -1
- package/src/agGrid/buildSortedColumnStateForLayout.d.ts +7 -0
- package/src/agGrid/buildSortedColumnStateForLayout.js +124 -0
- package/src/agGrid/defaultAdaptableOptions.js +7 -12
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +2 -2
- package/src/agGrid/sortColumnStateForVisibleColumns.d.ts +12 -0
- package/src/agGrid/sortColumnStateForVisibleColumns.js +50 -0
- package/src/agGrid/weightedAverage.d.ts +0 -2
- package/src/agGrid/weightedAverage.js +1 -56
- package/src/components/Accordion.d.ts +7 -0
- package/src/components/Accordion.js +41 -0
- package/src/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +10 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +0 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +3 -17
- package/src/components/Input/index.d.ts +1 -2
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/ProgressIndicator/ProgressIndicator.js +15 -6
- package/src/components/Select/Select.d.ts +1 -1
- package/src/components/Select/Select.js +3 -1
- package/src/components/Textarea/index.d.ts +2 -2
- package/src/components/icons/collapse-all.d.ts +3 -0
- package/src/components/icons/collapse-all.js +7 -0
- package/src/components/icons/copy.d.ts +3 -0
- package/src/components/icons/copy.js +7 -0
- package/src/components/icons/csv.d.ts +3 -0
- package/src/components/icons/csv.js +7 -0
- package/src/components/icons/data-object.d.ts +3 -0
- package/src/components/icons/data-object.js +7 -0
- package/src/components/icons/excel.d.ts +3 -0
- package/src/components/icons/excel.js +8 -0
- package/src/components/icons/expand-all.d.ts +3 -0
- package/src/components/icons/expand-all.js +7 -0
- package/src/components/icons/filter-off.d.ts +3 -0
- package/src/components/icons/filter-off.js +7 -0
- package/src/components/icons/grid-info.d.ts +3 -0
- package/src/components/icons/grid-info.js +7 -0
- package/src/components/icons/index.js +24 -0
- package/src/components/icons/note.js +2 -2
- package/src/components/icons/rows.d.ts +3 -0
- package/src/components/icons/rows.js +7 -0
- package/src/components/icons/select-all.d.ts +3 -0
- package/src/components/icons/select-all.js +7 -0
- package/src/components/icons/select-fwd.d.ts +3 -0
- package/src/components/icons/select-fwd.js +7 -0
- package/src/components/icons/select-off.d.ts +3 -0
- package/src/components/icons/select-off.js +7 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +230 -116
- package/src/metamodel/adaptable.metamodel.js +1 -9411
- package/src/parser/src/parser.js +576 -553
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +3 -4
- package/src/parser/src/types.d.ts +7 -2
- package/src/parser/src/types.js +1 -2
- package/src/types.d.ts +32 -25
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +0 -234
- package/src/AdaptableOptions/MenuOptions.js +0 -99
- package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
- package/src/Api/Implementation/NotesApiImpl.d.ts +0 -14
- package/src/Api/Implementation/NotesApiImpl.js +0 -40
- package/src/Api/Implementation/ScopeApiImpl.d.ts +0 -31
- package/src/Api/NotesApi.d.ts +0 -48
- package/src/PredefinedConfig/CellAddress.d.ts +0 -13
- package/src/PredefinedConfig/CellAddress.js +0 -5
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -38
- package/src/Strategy/CommentsModule.d.ts +0 -17
- package/src/Strategy/CommentsModule.js +0 -83
- package/src/Strategy/NotesModule.d.ts +0 -10
- package/src/Strategy/NotesModule.js +0 -62
- package/src/View/Components/ScopeComponent.d.ts +0 -24
- package/src/View/Components/ScopeComponent.js +0 -138
- package/src/View/Export/Wizard/ReportScopeWizard.d.ts +0 -17
- package/src/View/Export/Wizard/ReportScopeWizard.js +0 -52
- package/src/View/Notes/NotesPopup.d.ts +0 -2
- /package/src/{Api/Events/CommentsChangedInfo.js → AdaptableOptions/ColumnMenuOptions.js} +0 -0
- /package/src/{Api/NotesApi.js → AdaptableOptions/ContextMenuOptions.js} +0 -0
- /package/src/Api/{ScopeApi.js → ColumnMenuApi.js} +0 -0
- /package/src/{PredefinedConfig/Common/AdaptableScope.js → Api/ColumnScopeApi.js} +0 -0
- /package/src/{PredefinedConfig/NotesState.js → Api/ContextMenuApi.js} +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.d.ts +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.js +0 -0
package/src/parser/src/parser.js
CHANGED
|
@@ -79,19 +79,18 @@ var parser = (function () {
|
|
|
79
79
|
for (o = o || {}, l = k.length; l--; o[k[l]] = v)
|
|
80
80
|
;
|
|
81
81
|
return o;
|
|
82
|
-
}, $V0 = [1, 5], $V1 = [1, 6], $V2 = [1, 7], $V3 = [1, 8], $V4 = [1, 9], $V5 = [1,
|
|
83
|
-
4, 7, 9,
|
|
84
|
-
|
|
85
|
-
], $
|
|
86
|
-
4, 7, 9,
|
|
87
|
-
|
|
88
|
-
], $
|
|
89
|
-
4, 7, 9,
|
|
90
|
-
|
|
91
|
-
], $
|
|
92
|
-
4, 7, 9,
|
|
93
|
-
|
|
94
|
-
], $VD = [1, 76], $VE = [44, 47, 49];
|
|
82
|
+
}, $V0 = [1, 5], $V1 = [1, 6], $V2 = [1, 7], $V3 = [1, 8], $V4 = [1, 9], $V5 = [1, 10], $V6 = [1, 14], $V7 = [1, 11], $V8 = [1, 15], $V9 = [1, 13], $Va = [1, 16], $Vb = [4, 7], $Vc = [1, 19], $Vd = [1, 20], $Ve = [1, 21], $Vf = [1, 22], $Vg = [1, 23], $Vh = [1, 24], $Vi = [1, 25], $Vj = [1, 26], $Vk = [1, 27], $Vl = [1, 28], $Vm = [1, 29], $Vn = [1, 30], $Vo = [1, 31], $Vp = [1, 32], $Vq = [1, 33], $Vr = [1, 34], $Vs = [1, 35], $Vt = [1, 36], $Vu = [1, 37], $Vv = [1, 38], $Vw = [1, 39], $Vx = [
|
|
83
|
+
4, 7, 9, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39,
|
|
84
|
+
41, 42, 45, 46, 48, 50,
|
|
85
|
+
], $Vy = [9, 36], $Vz = [2, 6], $VA = [
|
|
86
|
+
4, 7, 9, 16, 17, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41, 42, 45, 46,
|
|
87
|
+
48, 50,
|
|
88
|
+
], $VB = [
|
|
89
|
+
4, 7, 9, 16, 17, 18, 19, 20, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41,
|
|
90
|
+
42, 45, 46, 48, 50,
|
|
91
|
+
], $VC = [4, 7, 9, 22, 23, 25, 26, 36, 42, 45, 46, 48, 50], $VD = [
|
|
92
|
+
4, 7, 9, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41, 42, 45, 46, 48, 50,
|
|
93
|
+
], $VE = [1, 77], $VF = [45, 48, 50];
|
|
95
94
|
var parser = {
|
|
96
95
|
trace: function trace() { },
|
|
97
96
|
yy: {},
|
|
@@ -109,41 +108,42 @@ var parser = (function () {
|
|
|
109
108
|
NUMBER: 12,
|
|
110
109
|
STRING: 13,
|
|
111
110
|
COL: 14,
|
|
112
|
-
|
|
113
|
-
'
|
|
114
|
-
'
|
|
115
|
-
'
|
|
116
|
-
'
|
|
117
|
-
'
|
|
118
|
-
'
|
|
119
|
-
'
|
|
120
|
-
'
|
|
121
|
-
'
|
|
122
|
-
'
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
'
|
|
126
|
-
'
|
|
127
|
-
'
|
|
128
|
-
'
|
|
129
|
-
'
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
'
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
111
|
+
FIELD: 15,
|
|
112
|
+
'+': 16,
|
|
113
|
+
'-': 17,
|
|
114
|
+
'*': 18,
|
|
115
|
+
'/': 19,
|
|
116
|
+
'%': 20,
|
|
117
|
+
'^': 21,
|
|
118
|
+
'|': 22,
|
|
119
|
+
'&': 23,
|
|
120
|
+
'!': 24,
|
|
121
|
+
'?': 25,
|
|
122
|
+
':': 26,
|
|
123
|
+
case_when: 27,
|
|
124
|
+
'=': 28,
|
|
125
|
+
'!=': 29,
|
|
126
|
+
'<': 30,
|
|
127
|
+
'<=': 31,
|
|
128
|
+
'>': 32,
|
|
129
|
+
'>=': 33,
|
|
130
|
+
BETWEEN: 34,
|
|
131
|
+
'(': 35,
|
|
132
|
+
')': 36,
|
|
133
|
+
STARTS_WITH: 37,
|
|
134
|
+
ENDS_WITH: 38,
|
|
135
|
+
CONTAINS: 39,
|
|
136
|
+
FUNCTION: 40,
|
|
137
|
+
IN: 41,
|
|
138
|
+
WHERE: 42,
|
|
139
|
+
case_expression_value: 43,
|
|
140
|
+
when_then_list: 44,
|
|
141
|
+
WHEN: 45,
|
|
142
|
+
THEN: 46,
|
|
143
|
+
case_when_else: 47,
|
|
144
|
+
ELSE: 48,
|
|
145
|
+
CASE: 49,
|
|
146
|
+
END: 50,
|
|
147
147
|
$accept: 0,
|
|
148
148
|
$end: 1,
|
|
149
149
|
},
|
|
@@ -157,37 +157,38 @@ var parser = (function () {
|
|
|
157
157
|
12: 'NUMBER',
|
|
158
158
|
13: 'STRING',
|
|
159
159
|
14: 'COL',
|
|
160
|
-
15: '
|
|
161
|
-
16: '
|
|
162
|
-
17: '
|
|
163
|
-
18: '
|
|
164
|
-
19: '
|
|
165
|
-
20: '
|
|
166
|
-
21: '
|
|
167
|
-
22: '
|
|
168
|
-
23: '
|
|
169
|
-
24: '
|
|
170
|
-
25: '
|
|
171
|
-
|
|
172
|
-
28: '
|
|
173
|
-
29: '
|
|
174
|
-
30: '
|
|
175
|
-
31: '
|
|
176
|
-
32: '
|
|
177
|
-
33: '
|
|
178
|
-
34: '
|
|
179
|
-
35: '
|
|
180
|
-
36: '
|
|
181
|
-
37: '
|
|
182
|
-
38: '
|
|
183
|
-
39: '
|
|
184
|
-
40: '
|
|
185
|
-
41: '
|
|
186
|
-
|
|
187
|
-
45: '
|
|
188
|
-
|
|
189
|
-
48: '
|
|
190
|
-
49: '
|
|
160
|
+
15: 'FIELD',
|
|
161
|
+
16: '+',
|
|
162
|
+
17: '-',
|
|
163
|
+
18: '*',
|
|
164
|
+
19: '/',
|
|
165
|
+
20: '%',
|
|
166
|
+
21: '^',
|
|
167
|
+
22: '|',
|
|
168
|
+
23: '&',
|
|
169
|
+
24: '!',
|
|
170
|
+
25: '?',
|
|
171
|
+
26: ':',
|
|
172
|
+
28: '=',
|
|
173
|
+
29: '!=',
|
|
174
|
+
30: '<',
|
|
175
|
+
31: '<=',
|
|
176
|
+
32: '>',
|
|
177
|
+
33: '>=',
|
|
178
|
+
34: 'BETWEEN',
|
|
179
|
+
35: '(',
|
|
180
|
+
36: ')',
|
|
181
|
+
37: 'STARTS_WITH',
|
|
182
|
+
38: 'ENDS_WITH',
|
|
183
|
+
39: 'CONTAINS',
|
|
184
|
+
40: 'FUNCTION',
|
|
185
|
+
41: 'IN',
|
|
186
|
+
42: 'WHERE',
|
|
187
|
+
45: 'WHEN',
|
|
188
|
+
46: 'THEN',
|
|
189
|
+
48: 'ELSE',
|
|
190
|
+
49: 'CASE',
|
|
191
|
+
50: 'END',
|
|
191
192
|
},
|
|
192
193
|
productions_: [
|
|
193
194
|
0,
|
|
@@ -204,6 +205,7 @@ var parser = (function () {
|
|
|
204
205
|
[6, 1],
|
|
205
206
|
[6, 1],
|
|
206
207
|
[6, 1],
|
|
208
|
+
[6, 1],
|
|
207
209
|
[6, 3],
|
|
208
210
|
[6, 3],
|
|
209
211
|
[6, 3],
|
|
@@ -230,13 +232,13 @@ var parser = (function () {
|
|
|
230
232
|
[6, 5],
|
|
231
233
|
[6, 3],
|
|
232
234
|
[6, 3],
|
|
233
|
-
[
|
|
234
|
-
[
|
|
235
|
-
[
|
|
236
|
-
[
|
|
237
|
-
[
|
|
238
|
-
[
|
|
239
|
-
[
|
|
235
|
+
[43, 0],
|
|
236
|
+
[43, 1],
|
|
237
|
+
[44, 4],
|
|
238
|
+
[44, 5],
|
|
239
|
+
[47, 0],
|
|
240
|
+
[47, 2],
|
|
241
|
+
[27, 5],
|
|
240
242
|
],
|
|
241
243
|
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate /* action[1] */, $$ /* vstack */, _$ /* lstack */) {
|
|
242
244
|
/* this == yyval */
|
|
@@ -253,7 +255,7 @@ var parser = (function () {
|
|
|
253
255
|
this.$ = [$$[$0]];
|
|
254
256
|
break;
|
|
255
257
|
case 4:
|
|
256
|
-
case
|
|
258
|
+
case 39:
|
|
257
259
|
this.$ = $$[$0 - 1];
|
|
258
260
|
break;
|
|
259
261
|
case 5:
|
|
@@ -276,97 +278,100 @@ var parser = (function () {
|
|
|
276
278
|
this.$ = $$[$0].slice(1, -1);
|
|
277
279
|
break;
|
|
278
280
|
case 13:
|
|
279
|
-
this.$ = yy.node('COL', [$$[$0].slice(1, -1)], this._$, '
|
|
281
|
+
this.$ = yy.node('COL', [$$[$0].slice(1, -1)], this._$, 'VALUE_REF');
|
|
280
282
|
break;
|
|
281
283
|
case 14:
|
|
282
|
-
this.$ = yy.node('
|
|
284
|
+
this.$ = yy.node('FIELD', [FIELD.slice(1, -1)], this._$, 'VALUE_REF');
|
|
283
285
|
break;
|
|
284
286
|
case 15:
|
|
285
|
-
this.$ = yy.node('
|
|
287
|
+
this.$ = yy.node('ADD', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
286
288
|
break;
|
|
287
289
|
case 16:
|
|
288
|
-
this.$ = yy.node('
|
|
290
|
+
this.$ = yy.node('SUB', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
289
291
|
break;
|
|
290
292
|
case 17:
|
|
291
|
-
this.$ = yy.node('
|
|
293
|
+
this.$ = yy.node('MUL', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
292
294
|
break;
|
|
293
295
|
case 18:
|
|
294
|
-
this.$ = yy.node('
|
|
296
|
+
this.$ = yy.node('DIV', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
295
297
|
break;
|
|
296
298
|
case 19:
|
|
297
|
-
this.$ = yy.node('
|
|
299
|
+
this.$ = yy.node('MOD', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
298
300
|
break;
|
|
299
301
|
case 20:
|
|
300
|
-
this.$ = yy.node('
|
|
302
|
+
this.$ = yy.node('POW', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
301
303
|
break;
|
|
302
304
|
case 21:
|
|
303
|
-
this.$ = yy.node('
|
|
305
|
+
this.$ = yy.node('OR', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
304
306
|
break;
|
|
305
307
|
case 22:
|
|
306
|
-
this.$ = yy.node('
|
|
308
|
+
this.$ = yy.node('AND', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
307
309
|
break;
|
|
308
310
|
case 23:
|
|
309
|
-
this.$ = yy.node('
|
|
311
|
+
this.$ = yy.node('NOT', [$$[$0]], this._$, 'UNARY');
|
|
310
312
|
break;
|
|
311
313
|
case 24:
|
|
312
|
-
|
|
313
|
-
case 45:
|
|
314
|
-
this.$ = $$[$0];
|
|
314
|
+
this.$ = yy.node('IF', [$$[$0 - 4], $$[$0 - 2], $$[$0]], this._$, 'CONDITIONAL');
|
|
315
315
|
break;
|
|
316
316
|
case 25:
|
|
317
|
-
|
|
317
|
+
case 42:
|
|
318
|
+
case 46:
|
|
319
|
+
this.$ = $$[$0];
|
|
318
320
|
break;
|
|
319
321
|
case 26:
|
|
320
|
-
this.$ = yy.node('
|
|
322
|
+
this.$ = yy.node('EQ', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
321
323
|
break;
|
|
322
324
|
case 27:
|
|
323
|
-
this.$ = yy.node('
|
|
325
|
+
this.$ = yy.node('NEQ', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
324
326
|
break;
|
|
325
327
|
case 28:
|
|
326
|
-
this.$ = yy.node('
|
|
328
|
+
this.$ = yy.node('LT', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
327
329
|
break;
|
|
328
330
|
case 29:
|
|
329
|
-
this.$ = yy.node('
|
|
331
|
+
this.$ = yy.node('LTE', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
330
332
|
break;
|
|
331
333
|
case 30:
|
|
332
|
-
this.$ = yy.node('
|
|
334
|
+
this.$ = yy.node('GT', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
333
335
|
break;
|
|
334
336
|
case 31:
|
|
335
|
-
this.$ = yy.node('
|
|
337
|
+
this.$ = yy.node('GTE', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
336
338
|
break;
|
|
337
339
|
case 32:
|
|
338
|
-
this.$ = yy.node('
|
|
340
|
+
this.$ = yy.node('BETWEEN', [$$[$0 - 4], $$[$0 - 1]], this._$, 'INFIX');
|
|
339
341
|
break;
|
|
340
342
|
case 33:
|
|
341
|
-
this.$ = yy.node('
|
|
343
|
+
this.$ = yy.node('STARTS_WITH', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
342
344
|
break;
|
|
343
345
|
case 34:
|
|
344
|
-
this.$ = yy.node('
|
|
346
|
+
this.$ = yy.node('ENDS_WITH', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
345
347
|
break;
|
|
346
348
|
case 35:
|
|
347
|
-
this.$ = yy.node($$[$0 -
|
|
349
|
+
this.$ = yy.node('CONTAINS', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
348
350
|
break;
|
|
349
351
|
case 36:
|
|
350
|
-
this.$ =
|
|
352
|
+
this.$ = yy.node($$[$0 - 3].toUpperCase(), $$[$0 - 1], this._$, 'FUNCTION');
|
|
351
353
|
break;
|
|
352
354
|
case 37:
|
|
355
|
+
this.$ = -$$[$0];
|
|
356
|
+
break;
|
|
357
|
+
case 38:
|
|
353
358
|
this.$ = yy.node('IN', [$$[$0 - 4], $$[$0 - 1]], this._$, 'INFIX');
|
|
354
359
|
break;
|
|
355
|
-
case
|
|
360
|
+
case 40:
|
|
356
361
|
this.$ = yy.node('WHERE', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
357
362
|
break;
|
|
358
|
-
case
|
|
359
|
-
case
|
|
363
|
+
case 41:
|
|
364
|
+
case 45:
|
|
360
365
|
this.$ = null;
|
|
361
366
|
break;
|
|
362
|
-
case
|
|
367
|
+
case 43:
|
|
363
368
|
this.$ = [{ WHEN: $$[$0 - 2], THEN: $$[$0] }];
|
|
364
369
|
break;
|
|
365
|
-
case
|
|
370
|
+
case 44:
|
|
366
371
|
this.$ = $$[$0 - 4];
|
|
367
372
|
this.$.push({ WHEN: $$[$0 - 2], THEN: $$[$0] });
|
|
368
373
|
break;
|
|
369
|
-
case
|
|
374
|
+
case 47:
|
|
370
375
|
this.$ = yy.node('CASE', [$$[$0 - 3], $$[$0 - 2], $$[$0 - 1]], this._$, 'CONDITIONAL');
|
|
371
376
|
break;
|
|
372
377
|
}
|
|
@@ -382,18 +387,18 @@ var parser = (function () {
|
|
|
382
387
|
12: $V2,
|
|
383
388
|
13: $V3,
|
|
384
389
|
14: $V4,
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
390
|
+
15: $V5,
|
|
391
|
+
17: $V6,
|
|
392
|
+
24: $V7,
|
|
393
|
+
27: 12,
|
|
394
|
+
35: $V8,
|
|
395
|
+
40: $V9,
|
|
396
|
+
49: $Va,
|
|
391
397
|
},
|
|
392
398
|
{ 1: [3] },
|
|
393
399
|
{ 1: [2, 1] },
|
|
394
|
-
{ 4: [1,
|
|
395
|
-
o($
|
|
396
|
-
15: $Vb,
|
|
400
|
+
{ 4: [1, 17], 7: [1, 18] },
|
|
401
|
+
o($Vb, [2, 3], {
|
|
397
402
|
16: $Vc,
|
|
398
403
|
17: $Vd,
|
|
399
404
|
18: $Ve,
|
|
@@ -401,114 +406,107 @@ var parser = (function () {
|
|
|
401
406
|
20: $Vg,
|
|
402
407
|
21: $Vh,
|
|
403
408
|
22: $Vi,
|
|
404
|
-
|
|
405
|
-
|
|
409
|
+
23: $Vj,
|
|
410
|
+
25: $Vk,
|
|
406
411
|
28: $Vl,
|
|
407
412
|
29: $Vm,
|
|
408
413
|
30: $Vn,
|
|
409
414
|
31: $Vo,
|
|
410
415
|
32: $Vp,
|
|
411
416
|
33: $Vq,
|
|
412
|
-
|
|
417
|
+
34: $Vr,
|
|
413
418
|
37: $Vs,
|
|
414
419
|
38: $Vt,
|
|
415
|
-
|
|
420
|
+
39: $Vu,
|
|
416
421
|
41: $Vv,
|
|
422
|
+
42: $Vw,
|
|
417
423
|
}),
|
|
418
|
-
o($
|
|
419
|
-
o($
|
|
420
|
-
o($
|
|
421
|
-
o($
|
|
422
|
-
o($
|
|
424
|
+
o($Vx, [2, 9]),
|
|
425
|
+
o($Vx, [2, 10]),
|
|
426
|
+
o($Vx, [2, 11]),
|
|
427
|
+
o($Vx, [2, 12]),
|
|
428
|
+
o($Vx, [2, 13]),
|
|
429
|
+
o($Vx, [2, 14]),
|
|
423
430
|
{
|
|
424
|
-
6:
|
|
431
|
+
6: 40,
|
|
425
432
|
10: $V0,
|
|
426
433
|
11: $V1,
|
|
427
434
|
12: $V2,
|
|
428
435
|
13: $V3,
|
|
429
436
|
14: $V4,
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
437
|
+
15: $V5,
|
|
438
|
+
17: $V6,
|
|
439
|
+
24: $V7,
|
|
440
|
+
27: 12,
|
|
441
|
+
35: $V8,
|
|
442
|
+
40: $V9,
|
|
443
|
+
49: $Va,
|
|
436
444
|
},
|
|
437
|
-
o($
|
|
438
|
-
{
|
|
445
|
+
o($Vx, [2, 25]),
|
|
446
|
+
{ 35: [1, 41] },
|
|
439
447
|
{
|
|
440
|
-
6:
|
|
448
|
+
6: 42,
|
|
441
449
|
10: $V0,
|
|
442
450
|
11: $V1,
|
|
443
451
|
12: $V2,
|
|
444
452
|
13: $V3,
|
|
445
453
|
14: $V4,
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
454
|
+
15: $V5,
|
|
455
|
+
17: $V6,
|
|
456
|
+
24: $V7,
|
|
457
|
+
27: 12,
|
|
458
|
+
35: $V8,
|
|
459
|
+
40: $V9,
|
|
460
|
+
49: $Va,
|
|
452
461
|
},
|
|
453
462
|
{
|
|
454
|
-
6:
|
|
463
|
+
6: 43,
|
|
455
464
|
10: $V0,
|
|
456
465
|
11: $V1,
|
|
457
466
|
12: $V2,
|
|
458
467
|
13: $V3,
|
|
459
468
|
14: $V4,
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
469
|
+
15: $V5,
|
|
470
|
+
17: $V6,
|
|
471
|
+
24: $V7,
|
|
472
|
+
27: 12,
|
|
473
|
+
35: $V8,
|
|
474
|
+
40: $V9,
|
|
475
|
+
49: $Va,
|
|
466
476
|
},
|
|
467
477
|
{
|
|
468
|
-
6:
|
|
478
|
+
6: 45,
|
|
469
479
|
10: $V0,
|
|
470
480
|
11: $V1,
|
|
471
481
|
12: $V2,
|
|
472
482
|
13: $V3,
|
|
473
483
|
14: $V4,
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
484
|
+
15: $V5,
|
|
485
|
+
17: $V6,
|
|
486
|
+
24: $V7,
|
|
487
|
+
27: 12,
|
|
488
|
+
35: $V8,
|
|
489
|
+
40: $V9,
|
|
490
|
+
43: 44,
|
|
491
|
+
45: [2, 41],
|
|
492
|
+
49: $Va,
|
|
482
493
|
},
|
|
483
494
|
{ 1: [2, 2] },
|
|
484
|
-
o($
|
|
485
|
-
|
|
486
|
-
6: 45,
|
|
487
|
-
10: $V0,
|
|
488
|
-
11: $V1,
|
|
489
|
-
12: $V2,
|
|
490
|
-
13: $V3,
|
|
491
|
-
14: $V4,
|
|
492
|
-
16: $V5,
|
|
493
|
-
23: $V6,
|
|
494
|
-
34: $V7,
|
|
495
|
-
39: $V8,
|
|
496
|
-
48: $V9,
|
|
497
|
-
}),
|
|
498
|
-
{
|
|
495
|
+
o($Vb, [2, 4], {
|
|
496
|
+
27: 12,
|
|
499
497
|
6: 46,
|
|
500
498
|
10: $V0,
|
|
501
499
|
11: $V1,
|
|
502
500
|
12: $V2,
|
|
503
501
|
13: $V3,
|
|
504
502
|
14: $V4,
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
},
|
|
503
|
+
15: $V5,
|
|
504
|
+
17: $V6,
|
|
505
|
+
24: $V7,
|
|
506
|
+
35: $V8,
|
|
507
|
+
40: $V9,
|
|
508
|
+
49: $Va,
|
|
509
|
+
}),
|
|
512
510
|
{
|
|
513
511
|
6: 47,
|
|
514
512
|
10: $V0,
|
|
@@ -516,12 +514,13 @@ var parser = (function () {
|
|
|
516
514
|
12: $V2,
|
|
517
515
|
13: $V3,
|
|
518
516
|
14: $V4,
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
517
|
+
15: $V5,
|
|
518
|
+
17: $V6,
|
|
519
|
+
24: $V7,
|
|
520
|
+
27: 12,
|
|
521
|
+
35: $V8,
|
|
522
|
+
40: $V9,
|
|
523
|
+
49: $Va,
|
|
525
524
|
},
|
|
526
525
|
{
|
|
527
526
|
6: 48,
|
|
@@ -530,12 +529,13 @@ var parser = (function () {
|
|
|
530
529
|
12: $V2,
|
|
531
530
|
13: $V3,
|
|
532
531
|
14: $V4,
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
532
|
+
15: $V5,
|
|
533
|
+
17: $V6,
|
|
534
|
+
24: $V7,
|
|
535
|
+
27: 12,
|
|
536
|
+
35: $V8,
|
|
537
|
+
40: $V9,
|
|
538
|
+
49: $Va,
|
|
539
539
|
},
|
|
540
540
|
{
|
|
541
541
|
6: 49,
|
|
@@ -544,12 +544,13 @@ var parser = (function () {
|
|
|
544
544
|
12: $V2,
|
|
545
545
|
13: $V3,
|
|
546
546
|
14: $V4,
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
547
|
+
15: $V5,
|
|
548
|
+
17: $V6,
|
|
549
|
+
24: $V7,
|
|
550
|
+
27: 12,
|
|
551
|
+
35: $V8,
|
|
552
|
+
40: $V9,
|
|
553
|
+
49: $Va,
|
|
553
554
|
},
|
|
554
555
|
{
|
|
555
556
|
6: 50,
|
|
@@ -558,12 +559,13 @@ var parser = (function () {
|
|
|
558
559
|
12: $V2,
|
|
559
560
|
13: $V3,
|
|
560
561
|
14: $V4,
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
562
|
+
15: $V5,
|
|
563
|
+
17: $V6,
|
|
564
|
+
24: $V7,
|
|
565
|
+
27: 12,
|
|
566
|
+
35: $V8,
|
|
567
|
+
40: $V9,
|
|
568
|
+
49: $Va,
|
|
567
569
|
},
|
|
568
570
|
{
|
|
569
571
|
6: 51,
|
|
@@ -572,12 +574,13 @@ var parser = (function () {
|
|
|
572
574
|
12: $V2,
|
|
573
575
|
13: $V3,
|
|
574
576
|
14: $V4,
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
577
|
+
15: $V5,
|
|
578
|
+
17: $V6,
|
|
579
|
+
24: $V7,
|
|
580
|
+
27: 12,
|
|
581
|
+
35: $V8,
|
|
582
|
+
40: $V9,
|
|
583
|
+
49: $Va,
|
|
581
584
|
},
|
|
582
585
|
{
|
|
583
586
|
6: 52,
|
|
@@ -586,12 +589,13 @@ var parser = (function () {
|
|
|
586
589
|
12: $V2,
|
|
587
590
|
13: $V3,
|
|
588
591
|
14: $V4,
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
592
|
+
15: $V5,
|
|
593
|
+
17: $V6,
|
|
594
|
+
24: $V7,
|
|
595
|
+
27: 12,
|
|
596
|
+
35: $V8,
|
|
597
|
+
40: $V9,
|
|
598
|
+
49: $Va,
|
|
595
599
|
},
|
|
596
600
|
{
|
|
597
601
|
6: 53,
|
|
@@ -600,12 +604,13 @@ var parser = (function () {
|
|
|
600
604
|
12: $V2,
|
|
601
605
|
13: $V3,
|
|
602
606
|
14: $V4,
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
607
|
+
15: $V5,
|
|
608
|
+
17: $V6,
|
|
609
|
+
24: $V7,
|
|
610
|
+
27: 12,
|
|
611
|
+
35: $V8,
|
|
612
|
+
40: $V9,
|
|
613
|
+
49: $Va,
|
|
609
614
|
},
|
|
610
615
|
{
|
|
611
616
|
6: 54,
|
|
@@ -614,12 +619,13 @@ var parser = (function () {
|
|
|
614
619
|
12: $V2,
|
|
615
620
|
13: $V3,
|
|
616
621
|
14: $V4,
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
622
|
+
15: $V5,
|
|
623
|
+
17: $V6,
|
|
624
|
+
24: $V7,
|
|
625
|
+
27: 12,
|
|
626
|
+
35: $V8,
|
|
627
|
+
40: $V9,
|
|
628
|
+
49: $Va,
|
|
623
629
|
},
|
|
624
630
|
{
|
|
625
631
|
6: 55,
|
|
@@ -628,12 +634,13 @@ var parser = (function () {
|
|
|
628
634
|
12: $V2,
|
|
629
635
|
13: $V3,
|
|
630
636
|
14: $V4,
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
+
15: $V5,
|
|
638
|
+
17: $V6,
|
|
639
|
+
24: $V7,
|
|
640
|
+
27: 12,
|
|
641
|
+
35: $V8,
|
|
642
|
+
40: $V9,
|
|
643
|
+
49: $Va,
|
|
637
644
|
},
|
|
638
645
|
{
|
|
639
646
|
6: 56,
|
|
@@ -642,12 +649,13 @@ var parser = (function () {
|
|
|
642
649
|
12: $V2,
|
|
643
650
|
13: $V3,
|
|
644
651
|
14: $V4,
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
652
|
+
15: $V5,
|
|
653
|
+
17: $V6,
|
|
654
|
+
24: $V7,
|
|
655
|
+
27: 12,
|
|
656
|
+
35: $V8,
|
|
657
|
+
40: $V9,
|
|
658
|
+
49: $Va,
|
|
651
659
|
},
|
|
652
660
|
{
|
|
653
661
|
6: 57,
|
|
@@ -656,12 +664,13 @@ var parser = (function () {
|
|
|
656
664
|
12: $V2,
|
|
657
665
|
13: $V3,
|
|
658
666
|
14: $V4,
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
667
|
+
15: $V5,
|
|
668
|
+
17: $V6,
|
|
669
|
+
24: $V7,
|
|
670
|
+
27: 12,
|
|
671
|
+
35: $V8,
|
|
672
|
+
40: $V9,
|
|
673
|
+
49: $Va,
|
|
665
674
|
},
|
|
666
675
|
{
|
|
667
676
|
6: 58,
|
|
@@ -670,12 +679,13 @@ var parser = (function () {
|
|
|
670
679
|
12: $V2,
|
|
671
680
|
13: $V3,
|
|
672
681
|
14: $V4,
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
682
|
+
15: $V5,
|
|
683
|
+
17: $V6,
|
|
684
|
+
24: $V7,
|
|
685
|
+
27: 12,
|
|
686
|
+
35: $V8,
|
|
687
|
+
40: $V9,
|
|
688
|
+
49: $Va,
|
|
679
689
|
},
|
|
680
690
|
{
|
|
681
691
|
6: 59,
|
|
@@ -684,12 +694,13 @@ var parser = (function () {
|
|
|
684
694
|
12: $V2,
|
|
685
695
|
13: $V3,
|
|
686
696
|
14: $V4,
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
697
|
+
15: $V5,
|
|
698
|
+
17: $V6,
|
|
699
|
+
24: $V7,
|
|
700
|
+
27: 12,
|
|
701
|
+
35: $V8,
|
|
702
|
+
40: $V9,
|
|
703
|
+
49: $Va,
|
|
693
704
|
},
|
|
694
705
|
{
|
|
695
706
|
6: 60,
|
|
@@ -698,28 +709,30 @@ var parser = (function () {
|
|
|
698
709
|
12: $V2,
|
|
699
710
|
13: $V3,
|
|
700
711
|
14: $V4,
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
712
|
+
15: $V5,
|
|
713
|
+
17: $V6,
|
|
714
|
+
24: $V7,
|
|
715
|
+
27: 12,
|
|
716
|
+
35: $V8,
|
|
717
|
+
40: $V9,
|
|
718
|
+
49: $Va,
|
|
707
719
|
},
|
|
708
|
-
{ 34: [1, 61] },
|
|
709
720
|
{
|
|
710
|
-
6:
|
|
721
|
+
6: 61,
|
|
711
722
|
10: $V0,
|
|
712
723
|
11: $V1,
|
|
713
724
|
12: $V2,
|
|
714
725
|
13: $V3,
|
|
715
726
|
14: $V4,
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
727
|
+
15: $V5,
|
|
728
|
+
17: $V6,
|
|
729
|
+
24: $V7,
|
|
730
|
+
27: 12,
|
|
731
|
+
35: $V8,
|
|
732
|
+
40: $V9,
|
|
733
|
+
49: $Va,
|
|
722
734
|
},
|
|
735
|
+
{ 35: [1, 62] },
|
|
723
736
|
{
|
|
724
737
|
6: 63,
|
|
725
738
|
10: $V0,
|
|
@@ -727,12 +740,13 @@ var parser = (function () {
|
|
|
727
740
|
12: $V2,
|
|
728
741
|
13: $V3,
|
|
729
742
|
14: $V4,
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
743
|
+
15: $V5,
|
|
744
|
+
17: $V6,
|
|
745
|
+
24: $V7,
|
|
746
|
+
27: 12,
|
|
747
|
+
35: $V8,
|
|
748
|
+
40: $V9,
|
|
749
|
+
49: $Va,
|
|
736
750
|
},
|
|
737
751
|
{
|
|
738
752
|
6: 64,
|
|
@@ -741,47 +755,64 @@ var parser = (function () {
|
|
|
741
755
|
12: $V2,
|
|
742
756
|
13: $V3,
|
|
743
757
|
14: $V4,
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
758
|
+
15: $V5,
|
|
759
|
+
17: $V6,
|
|
760
|
+
24: $V7,
|
|
761
|
+
27: 12,
|
|
762
|
+
35: $V8,
|
|
763
|
+
40: $V9,
|
|
764
|
+
49: $Va,
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
6: 65,
|
|
768
|
+
10: $V0,
|
|
769
|
+
11: $V1,
|
|
770
|
+
12: $V2,
|
|
771
|
+
13: $V3,
|
|
772
|
+
14: $V4,
|
|
773
|
+
15: $V5,
|
|
774
|
+
17: $V6,
|
|
775
|
+
24: $V7,
|
|
776
|
+
27: 12,
|
|
777
|
+
35: $V8,
|
|
778
|
+
40: $V9,
|
|
779
|
+
49: $Va,
|
|
750
780
|
},
|
|
751
|
-
{
|
|
781
|
+
{ 35: [1, 66] },
|
|
752
782
|
{
|
|
753
|
-
6:
|
|
783
|
+
6: 67,
|
|
754
784
|
10: $V0,
|
|
755
785
|
11: $V1,
|
|
756
786
|
12: $V2,
|
|
757
787
|
13: $V3,
|
|
758
788
|
14: $V4,
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
789
|
+
15: $V5,
|
|
790
|
+
17: $V6,
|
|
791
|
+
24: $V7,
|
|
792
|
+
27: 12,
|
|
793
|
+
35: $V8,
|
|
794
|
+
40: $V9,
|
|
795
|
+
49: $Va,
|
|
765
796
|
},
|
|
766
|
-
o($
|
|
767
|
-
o($
|
|
768
|
-
|
|
769
|
-
8:
|
|
770
|
-
6:
|
|
797
|
+
o($Vx, [2, 23]),
|
|
798
|
+
o($Vy, $Vz, {
|
|
799
|
+
27: 12,
|
|
800
|
+
8: 68,
|
|
801
|
+
6: 69,
|
|
771
802
|
10: $V0,
|
|
772
803
|
11: $V1,
|
|
773
804
|
12: $V2,
|
|
774
805
|
13: $V3,
|
|
775
806
|
14: $V4,
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
807
|
+
15: $V5,
|
|
808
|
+
17: $V6,
|
|
809
|
+
24: $V7,
|
|
810
|
+
35: $V8,
|
|
811
|
+
40: $V9,
|
|
812
|
+
49: $Va,
|
|
781
813
|
}),
|
|
782
|
-
o($
|
|
814
|
+
o($Vx, [2, 37]),
|
|
783
815
|
{
|
|
784
|
-
15: $Vb,
|
|
785
816
|
16: $Vc,
|
|
786
817
|
17: $Vd,
|
|
787
818
|
18: $Ve,
|
|
@@ -789,24 +820,24 @@ var parser = (function () {
|
|
|
789
820
|
20: $Vg,
|
|
790
821
|
21: $Vh,
|
|
791
822
|
22: $Vi,
|
|
792
|
-
|
|
793
|
-
|
|
823
|
+
23: $Vj,
|
|
824
|
+
25: $Vk,
|
|
794
825
|
28: $Vl,
|
|
795
826
|
29: $Vm,
|
|
796
827
|
30: $Vn,
|
|
797
828
|
31: $Vo,
|
|
798
829
|
32: $Vp,
|
|
799
830
|
33: $Vq,
|
|
800
|
-
|
|
801
|
-
36:
|
|
831
|
+
34: $Vr,
|
|
832
|
+
36: [1, 70],
|
|
802
833
|
37: $Vs,
|
|
803
834
|
38: $Vt,
|
|
804
|
-
|
|
835
|
+
39: $Vu,
|
|
805
836
|
41: $Vv,
|
|
837
|
+
42: $Vw,
|
|
806
838
|
},
|
|
807
|
-
{
|
|
839
|
+
{ 44: 71, 45: [1, 72] },
|
|
808
840
|
{
|
|
809
|
-
15: $Vb,
|
|
810
841
|
16: $Vc,
|
|
811
842
|
17: $Vd,
|
|
812
843
|
18: $Ve,
|
|
@@ -814,23 +845,23 @@ var parser = (function () {
|
|
|
814
845
|
20: $Vg,
|
|
815
846
|
21: $Vh,
|
|
816
847
|
22: $Vi,
|
|
817
|
-
|
|
818
|
-
|
|
848
|
+
23: $Vj,
|
|
849
|
+
25: $Vk,
|
|
819
850
|
28: $Vl,
|
|
820
851
|
29: $Vm,
|
|
821
852
|
30: $Vn,
|
|
822
853
|
31: $Vo,
|
|
823
854
|
32: $Vp,
|
|
824
855
|
33: $Vq,
|
|
825
|
-
|
|
856
|
+
34: $Vr,
|
|
826
857
|
37: $Vs,
|
|
827
858
|
38: $Vt,
|
|
828
|
-
|
|
859
|
+
39: $Vu,
|
|
829
860
|
41: $Vv,
|
|
830
|
-
|
|
861
|
+
42: $Vw,
|
|
862
|
+
45: [2, 42],
|
|
831
863
|
},
|
|
832
|
-
o($
|
|
833
|
-
15: $Vb,
|
|
864
|
+
o($Vb, [2, 5], {
|
|
834
865
|
16: $Vc,
|
|
835
866
|
17: $Vd,
|
|
836
867
|
18: $Ve,
|
|
@@ -838,66 +869,66 @@ var parser = (function () {
|
|
|
838
869
|
20: $Vg,
|
|
839
870
|
21: $Vh,
|
|
840
871
|
22: $Vi,
|
|
841
|
-
|
|
842
|
-
|
|
872
|
+
23: $Vj,
|
|
873
|
+
25: $Vk,
|
|
843
874
|
28: $Vl,
|
|
844
875
|
29: $Vm,
|
|
845
876
|
30: $Vn,
|
|
846
877
|
31: $Vo,
|
|
847
878
|
32: $Vp,
|
|
848
879
|
33: $Vq,
|
|
849
|
-
|
|
880
|
+
34: $Vr,
|
|
850
881
|
37: $Vs,
|
|
851
882
|
38: $Vt,
|
|
852
|
-
|
|
883
|
+
39: $Vu,
|
|
853
884
|
41: $Vv,
|
|
885
|
+
42: $Vw,
|
|
854
886
|
}),
|
|
855
|
-
o($
|
|
856
|
-
o($
|
|
857
|
-
o($
|
|
858
|
-
o($
|
|
859
|
-
o($
|
|
860
|
-
o($
|
|
861
|
-
o($
|
|
862
|
-
15: $Vb,
|
|
887
|
+
o($VA, [2, 15], { 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
888
|
+
o($VA, [2, 16], { 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
889
|
+
o($VB, [2, 17], { 21: $Vh }),
|
|
890
|
+
o($VB, [2, 18], { 21: $Vh }),
|
|
891
|
+
o($VB, [2, 19], { 21: $Vh }),
|
|
892
|
+
o($Vx, [2, 20]),
|
|
893
|
+
o($VC, [2, 21], {
|
|
863
894
|
16: $Vc,
|
|
864
895
|
17: $Vd,
|
|
865
896
|
18: $Ve,
|
|
866
897
|
19: $Vf,
|
|
867
898
|
20: $Vg,
|
|
868
|
-
|
|
899
|
+
21: $Vh,
|
|
869
900
|
28: $Vl,
|
|
870
901
|
29: $Vm,
|
|
871
902
|
30: $Vn,
|
|
872
903
|
31: $Vo,
|
|
873
904
|
32: $Vp,
|
|
874
905
|
33: $Vq,
|
|
875
|
-
|
|
906
|
+
34: $Vr,
|
|
876
907
|
37: $Vs,
|
|
877
908
|
38: $Vt,
|
|
878
|
-
|
|
909
|
+
39: $Vu,
|
|
910
|
+
41: $Vv,
|
|
879
911
|
}),
|
|
880
|
-
o($
|
|
881
|
-
15: $Vb,
|
|
912
|
+
o($VC, [2, 22], {
|
|
882
913
|
16: $Vc,
|
|
883
914
|
17: $Vd,
|
|
884
915
|
18: $Ve,
|
|
885
916
|
19: $Vf,
|
|
886
917
|
20: $Vg,
|
|
887
|
-
|
|
918
|
+
21: $Vh,
|
|
888
919
|
28: $Vl,
|
|
889
920
|
29: $Vm,
|
|
890
921
|
30: $Vn,
|
|
891
922
|
31: $Vo,
|
|
892
923
|
32: $Vp,
|
|
893
924
|
33: $Vq,
|
|
894
|
-
|
|
925
|
+
34: $Vr,
|
|
895
926
|
37: $Vs,
|
|
896
927
|
38: $Vt,
|
|
897
|
-
|
|
928
|
+
39: $Vu,
|
|
929
|
+
41: $Vv,
|
|
898
930
|
}),
|
|
899
931
|
{
|
|
900
|
-
15: $Vb,
|
|
901
932
|
16: $Vc,
|
|
902
933
|
17: $Vd,
|
|
903
934
|
18: $Ve,
|
|
@@ -905,62 +936,64 @@ var parser = (function () {
|
|
|
905
936
|
20: $Vg,
|
|
906
937
|
21: $Vh,
|
|
907
938
|
22: $Vi,
|
|
908
|
-
|
|
909
|
-
25:
|
|
910
|
-
|
|
939
|
+
23: $Vj,
|
|
940
|
+
25: $Vk,
|
|
941
|
+
26: [1, 73],
|
|
911
942
|
28: $Vl,
|
|
912
943
|
29: $Vm,
|
|
913
944
|
30: $Vn,
|
|
914
945
|
31: $Vo,
|
|
915
946
|
32: $Vp,
|
|
916
947
|
33: $Vq,
|
|
917
|
-
|
|
948
|
+
34: $Vr,
|
|
918
949
|
37: $Vs,
|
|
919
950
|
38: $Vt,
|
|
920
|
-
|
|
951
|
+
39: $Vu,
|
|
921
952
|
41: $Vv,
|
|
953
|
+
42: $Vw,
|
|
922
954
|
},
|
|
923
|
-
o($
|
|
924
|
-
o($
|
|
925
|
-
o($
|
|
926
|
-
o($
|
|
927
|
-
o($
|
|
928
|
-
o($
|
|
929
|
-
o($
|
|
930
|
-
|
|
931
|
-
6:
|
|
932
|
-
8:
|
|
955
|
+
o($VD, [2, 26], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
956
|
+
o($VD, [2, 27], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
957
|
+
o($VD, [2, 28], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
958
|
+
o($VD, [2, 29], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
959
|
+
o($VD, [2, 30], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
960
|
+
o($VD, [2, 31], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
961
|
+
o($Vy, $Vz, {
|
|
962
|
+
27: 12,
|
|
963
|
+
6: 69,
|
|
964
|
+
8: 74,
|
|
933
965
|
10: $V0,
|
|
934
966
|
11: $V1,
|
|
935
967
|
12: $V2,
|
|
936
968
|
13: $V3,
|
|
937
969
|
14: $V4,
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
970
|
+
15: $V5,
|
|
971
|
+
17: $V6,
|
|
972
|
+
24: $V7,
|
|
973
|
+
35: $V8,
|
|
974
|
+
40: $V9,
|
|
975
|
+
49: $Va,
|
|
943
976
|
}),
|
|
944
|
-
o($
|
|
945
|
-
o($
|
|
946
|
-
o($
|
|
947
|
-
o($
|
|
948
|
-
|
|
949
|
-
6:
|
|
950
|
-
8:
|
|
977
|
+
o($VD, [2, 33], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
978
|
+
o($VD, [2, 34], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
979
|
+
o($VD, [2, 35], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
980
|
+
o($Vy, $Vz, {
|
|
981
|
+
27: 12,
|
|
982
|
+
6: 69,
|
|
983
|
+
8: 75,
|
|
951
984
|
10: $V0,
|
|
952
985
|
11: $V1,
|
|
953
986
|
12: $V2,
|
|
954
987
|
13: $V3,
|
|
955
988
|
14: $V4,
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
989
|
+
15: $V5,
|
|
990
|
+
17: $V6,
|
|
991
|
+
24: $V7,
|
|
992
|
+
35: $V8,
|
|
993
|
+
40: $V9,
|
|
994
|
+
49: $Va,
|
|
961
995
|
}),
|
|
962
|
-
o([4, 7, 9,
|
|
963
|
-
15: $Vb,
|
|
996
|
+
o([4, 7, 9, 25, 26, 36, 42, 45, 46, 48, 50], [2, 40], {
|
|
964
997
|
16: $Vc,
|
|
965
998
|
17: $Vd,
|
|
966
999
|
18: $Ve,
|
|
@@ -968,21 +1001,21 @@ var parser = (function () {
|
|
|
968
1001
|
20: $Vg,
|
|
969
1002
|
21: $Vh,
|
|
970
1003
|
22: $Vi,
|
|
971
|
-
|
|
1004
|
+
23: $Vj,
|
|
972
1005
|
28: $Vl,
|
|
973
1006
|
29: $Vm,
|
|
974
1007
|
30: $Vn,
|
|
975
1008
|
31: $Vo,
|
|
976
1009
|
32: $Vp,
|
|
977
1010
|
33: $Vq,
|
|
978
|
-
|
|
1011
|
+
34: $Vr,
|
|
979
1012
|
37: $Vs,
|
|
980
1013
|
38: $Vt,
|
|
981
|
-
|
|
1014
|
+
39: $Vu,
|
|
1015
|
+
41: $Vv,
|
|
982
1016
|
}),
|
|
983
|
-
{ 9: $
|
|
984
|
-
o($
|
|
985
|
-
15: $Vb,
|
|
1017
|
+
{ 9: $VE, 36: [1, 76] },
|
|
1018
|
+
o($Vy, [2, 7], {
|
|
986
1019
|
16: $Vc,
|
|
987
1020
|
17: $Vd,
|
|
988
1021
|
18: $Ve,
|
|
@@ -990,98 +1023,103 @@ var parser = (function () {
|
|
|
990
1023
|
20: $Vg,
|
|
991
1024
|
21: $Vh,
|
|
992
1025
|
22: $Vi,
|
|
993
|
-
|
|
994
|
-
|
|
1026
|
+
23: $Vj,
|
|
1027
|
+
25: $Vk,
|
|
995
1028
|
28: $Vl,
|
|
996
1029
|
29: $Vm,
|
|
997
1030
|
30: $Vn,
|
|
998
1031
|
31: $Vo,
|
|
999
1032
|
32: $Vp,
|
|
1000
1033
|
33: $Vq,
|
|
1001
|
-
|
|
1034
|
+
34: $Vr,
|
|
1002
1035
|
37: $Vs,
|
|
1003
1036
|
38: $Vt,
|
|
1004
|
-
|
|
1037
|
+
39: $Vu,
|
|
1005
1038
|
41: $Vv,
|
|
1039
|
+
42: $Vw,
|
|
1006
1040
|
}),
|
|
1007
|
-
o($
|
|
1008
|
-
{
|
|
1041
|
+
o($Vx, [2, 39]),
|
|
1042
|
+
{ 45: [1, 79], 47: 78, 48: [1, 80], 50: [2, 45] },
|
|
1009
1043
|
{
|
|
1010
|
-
6:
|
|
1044
|
+
6: 81,
|
|
1011
1045
|
10: $V0,
|
|
1012
1046
|
11: $V1,
|
|
1013
1047
|
12: $V2,
|
|
1014
1048
|
13: $V3,
|
|
1015
1049
|
14: $V4,
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1050
|
+
15: $V5,
|
|
1051
|
+
17: $V6,
|
|
1052
|
+
24: $V7,
|
|
1053
|
+
27: 12,
|
|
1054
|
+
35: $V8,
|
|
1055
|
+
40: $V9,
|
|
1056
|
+
49: $Va,
|
|
1022
1057
|
},
|
|
1023
1058
|
{
|
|
1024
|
-
6:
|
|
1059
|
+
6: 82,
|
|
1025
1060
|
10: $V0,
|
|
1026
1061
|
11: $V1,
|
|
1027
1062
|
12: $V2,
|
|
1028
1063
|
13: $V3,
|
|
1029
1064
|
14: $V4,
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1065
|
+
15: $V5,
|
|
1066
|
+
17: $V6,
|
|
1067
|
+
24: $V7,
|
|
1068
|
+
27: 12,
|
|
1069
|
+
35: $V8,
|
|
1070
|
+
40: $V9,
|
|
1071
|
+
49: $Va,
|
|
1036
1072
|
},
|
|
1037
|
-
{ 9: $
|
|
1038
|
-
{ 9: $
|
|
1039
|
-
o($
|
|
1073
|
+
{ 9: $VE, 36: [1, 83] },
|
|
1074
|
+
{ 9: $VE, 36: [1, 84] },
|
|
1075
|
+
o($Vx, [2, 36]),
|
|
1040
1076
|
{
|
|
1041
|
-
6:
|
|
1077
|
+
6: 85,
|
|
1042
1078
|
10: $V0,
|
|
1043
1079
|
11: $V1,
|
|
1044
1080
|
12: $V2,
|
|
1045
1081
|
13: $V3,
|
|
1046
1082
|
14: $V4,
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1083
|
+
15: $V5,
|
|
1084
|
+
17: $V6,
|
|
1085
|
+
24: $V7,
|
|
1086
|
+
27: 12,
|
|
1087
|
+
35: $V8,
|
|
1088
|
+
40: $V9,
|
|
1089
|
+
49: $Va,
|
|
1053
1090
|
},
|
|
1054
|
-
{
|
|
1091
|
+
{ 50: [1, 86] },
|
|
1055
1092
|
{
|
|
1056
|
-
6:
|
|
1093
|
+
6: 87,
|
|
1057
1094
|
10: $V0,
|
|
1058
1095
|
11: $V1,
|
|
1059
1096
|
12: $V2,
|
|
1060
1097
|
13: $V3,
|
|
1061
1098
|
14: $V4,
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1099
|
+
15: $V5,
|
|
1100
|
+
17: $V6,
|
|
1101
|
+
24: $V7,
|
|
1102
|
+
27: 12,
|
|
1103
|
+
35: $V8,
|
|
1104
|
+
40: $V9,
|
|
1105
|
+
49: $Va,
|
|
1068
1106
|
},
|
|
1069
1107
|
{
|
|
1070
|
-
6:
|
|
1108
|
+
6: 88,
|
|
1071
1109
|
10: $V0,
|
|
1072
1110
|
11: $V1,
|
|
1073
1111
|
12: $V2,
|
|
1074
1112
|
13: $V3,
|
|
1075
1113
|
14: $V4,
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1114
|
+
15: $V5,
|
|
1115
|
+
17: $V6,
|
|
1116
|
+
24: $V7,
|
|
1117
|
+
27: 12,
|
|
1118
|
+
35: $V8,
|
|
1119
|
+
40: $V9,
|
|
1120
|
+
49: $Va,
|
|
1082
1121
|
},
|
|
1083
1122
|
{
|
|
1084
|
-
15: $Vb,
|
|
1085
1123
|
16: $Vc,
|
|
1086
1124
|
17: $Vd,
|
|
1087
1125
|
18: $Ve,
|
|
@@ -1089,23 +1127,23 @@ var parser = (function () {
|
|
|
1089
1127
|
20: $Vg,
|
|
1090
1128
|
21: $Vh,
|
|
1091
1129
|
22: $Vi,
|
|
1092
|
-
|
|
1093
|
-
|
|
1130
|
+
23: $Vj,
|
|
1131
|
+
25: $Vk,
|
|
1094
1132
|
28: $Vl,
|
|
1095
1133
|
29: $Vm,
|
|
1096
1134
|
30: $Vn,
|
|
1097
1135
|
31: $Vo,
|
|
1098
1136
|
32: $Vp,
|
|
1099
1137
|
33: $Vq,
|
|
1100
|
-
|
|
1138
|
+
34: $Vr,
|
|
1101
1139
|
37: $Vs,
|
|
1102
1140
|
38: $Vt,
|
|
1103
|
-
|
|
1141
|
+
39: $Vu,
|
|
1104
1142
|
41: $Vv,
|
|
1105
|
-
|
|
1143
|
+
42: $Vw,
|
|
1144
|
+
46: [1, 89],
|
|
1106
1145
|
},
|
|
1107
|
-
o([4, 7, 9,
|
|
1108
|
-
15: $Vb,
|
|
1146
|
+
o([4, 7, 9, 26, 36, 45, 46, 48, 50], [2, 24], {
|
|
1109
1147
|
16: $Vc,
|
|
1110
1148
|
17: $Vd,
|
|
1111
1149
|
18: $Ve,
|
|
@@ -1113,24 +1151,24 @@ var parser = (function () {
|
|
|
1113
1151
|
20: $Vg,
|
|
1114
1152
|
21: $Vh,
|
|
1115
1153
|
22: $Vi,
|
|
1116
|
-
|
|
1117
|
-
|
|
1154
|
+
23: $Vj,
|
|
1155
|
+
25: $Vk,
|
|
1118
1156
|
28: $Vl,
|
|
1119
1157
|
29: $Vm,
|
|
1120
1158
|
30: $Vn,
|
|
1121
1159
|
31: $Vo,
|
|
1122
1160
|
32: $Vp,
|
|
1123
1161
|
33: $Vq,
|
|
1124
|
-
|
|
1162
|
+
34: $Vr,
|
|
1125
1163
|
37: $Vs,
|
|
1126
1164
|
38: $Vt,
|
|
1127
|
-
|
|
1165
|
+
39: $Vu,
|
|
1128
1166
|
41: $Vv,
|
|
1167
|
+
42: $Vw,
|
|
1129
1168
|
}),
|
|
1130
|
-
o($
|
|
1131
|
-
o($
|
|
1132
|
-
o($
|
|
1133
|
-
15: $Vb,
|
|
1169
|
+
o($Vx, [2, 32]),
|
|
1170
|
+
o($Vx, [2, 38]),
|
|
1171
|
+
o($Vy, [2, 8], {
|
|
1134
1172
|
16: $Vc,
|
|
1135
1173
|
17: $Vd,
|
|
1136
1174
|
18: $Ve,
|
|
@@ -1138,23 +1176,23 @@ var parser = (function () {
|
|
|
1138
1176
|
20: $Vg,
|
|
1139
1177
|
21: $Vh,
|
|
1140
1178
|
22: $Vi,
|
|
1141
|
-
|
|
1142
|
-
|
|
1179
|
+
23: $Vj,
|
|
1180
|
+
25: $Vk,
|
|
1143
1181
|
28: $Vl,
|
|
1144
1182
|
29: $Vm,
|
|
1145
1183
|
30: $Vn,
|
|
1146
1184
|
31: $Vo,
|
|
1147
1185
|
32: $Vp,
|
|
1148
1186
|
33: $Vq,
|
|
1149
|
-
|
|
1187
|
+
34: $Vr,
|
|
1150
1188
|
37: $Vs,
|
|
1151
1189
|
38: $Vt,
|
|
1152
|
-
|
|
1190
|
+
39: $Vu,
|
|
1153
1191
|
41: $Vv,
|
|
1192
|
+
42: $Vw,
|
|
1154
1193
|
}),
|
|
1155
|
-
o($
|
|
1194
|
+
o($Vx, [2, 47]),
|
|
1156
1195
|
{
|
|
1157
|
-
15: $Vb,
|
|
1158
1196
|
16: $Vc,
|
|
1159
1197
|
17: $Vd,
|
|
1160
1198
|
18: $Ve,
|
|
@@ -1162,23 +1200,23 @@ var parser = (function () {
|
|
|
1162
1200
|
20: $Vg,
|
|
1163
1201
|
21: $Vh,
|
|
1164
1202
|
22: $Vi,
|
|
1165
|
-
|
|
1166
|
-
|
|
1203
|
+
23: $Vj,
|
|
1204
|
+
25: $Vk,
|
|
1167
1205
|
28: $Vl,
|
|
1168
1206
|
29: $Vm,
|
|
1169
1207
|
30: $Vn,
|
|
1170
1208
|
31: $Vo,
|
|
1171
1209
|
32: $Vp,
|
|
1172
1210
|
33: $Vq,
|
|
1173
|
-
|
|
1211
|
+
34: $Vr,
|
|
1174
1212
|
37: $Vs,
|
|
1175
1213
|
38: $Vt,
|
|
1176
|
-
|
|
1214
|
+
39: $Vu,
|
|
1177
1215
|
41: $Vv,
|
|
1178
|
-
|
|
1216
|
+
42: $Vw,
|
|
1217
|
+
46: [1, 90],
|
|
1179
1218
|
},
|
|
1180
1219
|
{
|
|
1181
|
-
15: $Vb,
|
|
1182
1220
|
16: $Vc,
|
|
1183
1221
|
17: $Vd,
|
|
1184
1222
|
18: $Ve,
|
|
@@ -1186,51 +1224,53 @@ var parser = (function () {
|
|
|
1186
1224
|
20: $Vg,
|
|
1187
1225
|
21: $Vh,
|
|
1188
1226
|
22: $Vi,
|
|
1189
|
-
|
|
1190
|
-
|
|
1227
|
+
23: $Vj,
|
|
1228
|
+
25: $Vk,
|
|
1191
1229
|
28: $Vl,
|
|
1192
1230
|
29: $Vm,
|
|
1193
1231
|
30: $Vn,
|
|
1194
1232
|
31: $Vo,
|
|
1195
1233
|
32: $Vp,
|
|
1196
1234
|
33: $Vq,
|
|
1197
|
-
|
|
1235
|
+
34: $Vr,
|
|
1198
1236
|
37: $Vs,
|
|
1199
1237
|
38: $Vt,
|
|
1200
|
-
|
|
1238
|
+
39: $Vu,
|
|
1201
1239
|
41: $Vv,
|
|
1202
|
-
|
|
1240
|
+
42: $Vw,
|
|
1241
|
+
50: [2, 46],
|
|
1203
1242
|
},
|
|
1204
1243
|
{
|
|
1205
|
-
6:
|
|
1244
|
+
6: 91,
|
|
1206
1245
|
10: $V0,
|
|
1207
1246
|
11: $V1,
|
|
1208
1247
|
12: $V2,
|
|
1209
1248
|
13: $V3,
|
|
1210
1249
|
14: $V4,
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1250
|
+
15: $V5,
|
|
1251
|
+
17: $V6,
|
|
1252
|
+
24: $V7,
|
|
1253
|
+
27: 12,
|
|
1254
|
+
35: $V8,
|
|
1255
|
+
40: $V9,
|
|
1256
|
+
49: $Va,
|
|
1217
1257
|
},
|
|
1218
1258
|
{
|
|
1219
|
-
6:
|
|
1259
|
+
6: 92,
|
|
1220
1260
|
10: $V0,
|
|
1221
1261
|
11: $V1,
|
|
1222
1262
|
12: $V2,
|
|
1223
1263
|
13: $V3,
|
|
1224
1264
|
14: $V4,
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1265
|
+
15: $V5,
|
|
1266
|
+
17: $V6,
|
|
1267
|
+
24: $V7,
|
|
1268
|
+
27: 12,
|
|
1269
|
+
35: $V8,
|
|
1270
|
+
40: $V9,
|
|
1271
|
+
49: $Va,
|
|
1231
1272
|
},
|
|
1232
|
-
o($
|
|
1233
|
-
15: $Vb,
|
|
1273
|
+
o($VF, [2, 43], {
|
|
1234
1274
|
16: $Vc,
|
|
1235
1275
|
17: $Vd,
|
|
1236
1276
|
18: $Ve,
|
|
@@ -1238,22 +1278,22 @@ var parser = (function () {
|
|
|
1238
1278
|
20: $Vg,
|
|
1239
1279
|
21: $Vh,
|
|
1240
1280
|
22: $Vi,
|
|
1241
|
-
|
|
1242
|
-
|
|
1281
|
+
23: $Vj,
|
|
1282
|
+
25: $Vk,
|
|
1243
1283
|
28: $Vl,
|
|
1244
1284
|
29: $Vm,
|
|
1245
1285
|
30: $Vn,
|
|
1246
1286
|
31: $Vo,
|
|
1247
1287
|
32: $Vp,
|
|
1248
1288
|
33: $Vq,
|
|
1249
|
-
|
|
1289
|
+
34: $Vr,
|
|
1250
1290
|
37: $Vs,
|
|
1251
1291
|
38: $Vt,
|
|
1252
|
-
|
|
1292
|
+
39: $Vu,
|
|
1253
1293
|
41: $Vv,
|
|
1294
|
+
42: $Vw,
|
|
1254
1295
|
}),
|
|
1255
|
-
o($
|
|
1256
|
-
15: $Vb,
|
|
1296
|
+
o($VF, [2, 44], {
|
|
1257
1297
|
16: $Vc,
|
|
1258
1298
|
17: $Vd,
|
|
1259
1299
|
18: $Ve,
|
|
@@ -1261,22 +1301,23 @@ var parser = (function () {
|
|
|
1261
1301
|
20: $Vg,
|
|
1262
1302
|
21: $Vh,
|
|
1263
1303
|
22: $Vi,
|
|
1264
|
-
|
|
1265
|
-
|
|
1304
|
+
23: $Vj,
|
|
1305
|
+
25: $Vk,
|
|
1266
1306
|
28: $Vl,
|
|
1267
1307
|
29: $Vm,
|
|
1268
1308
|
30: $Vn,
|
|
1269
1309
|
31: $Vo,
|
|
1270
1310
|
32: $Vp,
|
|
1271
1311
|
33: $Vq,
|
|
1272
|
-
|
|
1312
|
+
34: $Vr,
|
|
1273
1313
|
37: $Vs,
|
|
1274
1314
|
38: $Vt,
|
|
1275
|
-
|
|
1315
|
+
39: $Vu,
|
|
1276
1316
|
41: $Vv,
|
|
1317
|
+
42: $Vw,
|
|
1277
1318
|
}),
|
|
1278
1319
|
],
|
|
1279
|
-
defaultActions: { 2: [2, 1],
|
|
1320
|
+
defaultActions: { 2: [2, 1], 17: [2, 2] },
|
|
1280
1321
|
parseError: function parseError(str, hash) {
|
|
1281
1322
|
if (hash.recoverable) {
|
|
1282
1323
|
this.trace(str);
|
|
@@ -1362,9 +1403,7 @@ var parser = (function () {
|
|
|
1362
1403
|
'Parse error on line ' +
|
|
1363
1404
|
(yylineno + 1) +
|
|
1364
1405
|
': Unexpected ' +
|
|
1365
|
-
(symbol == EOF
|
|
1366
|
-
? 'end of input'
|
|
1367
|
-
: "'" + (this.terminals_[symbol] || symbol) + "'");
|
|
1406
|
+
(symbol == EOF ? 'end of input' : "'" + (this.terminals_[symbol] || symbol) + "'");
|
|
1368
1407
|
}
|
|
1369
1408
|
this.parseError(errStr, {
|
|
1370
1409
|
text: lexer.match,
|
|
@@ -1375,10 +1414,7 @@ var parser = (function () {
|
|
|
1375
1414
|
});
|
|
1376
1415
|
}
|
|
1377
1416
|
if (action[0] instanceof Array && action.length > 1) {
|
|
1378
|
-
throw new Error('Parse Error: multiple actions possible at state: ' +
|
|
1379
|
-
state +
|
|
1380
|
-
', token: ' +
|
|
1381
|
-
symbol);
|
|
1417
|
+
throw new Error('Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol);
|
|
1382
1418
|
}
|
|
1383
1419
|
switch (action[0]) {
|
|
1384
1420
|
case 1:
|
|
@@ -1416,15 +1452,7 @@ var parser = (function () {
|
|
|
1416
1452
|
lstack[lstack.length - 1].range[1],
|
|
1417
1453
|
];
|
|
1418
1454
|
}
|
|
1419
|
-
r = this.performAction.apply(yyval, [
|
|
1420
|
-
yytext,
|
|
1421
|
-
yyleng,
|
|
1422
|
-
yylineno,
|
|
1423
|
-
sharedState.yy,
|
|
1424
|
-
action[1],
|
|
1425
|
-
vstack,
|
|
1426
|
-
lstack,
|
|
1427
|
-
].concat(args));
|
|
1455
|
+
r = this.performAction.apply(yyval, [yytext, yyleng, yylineno, sharedState.yy, action[1], vstack, lstack].concat(args));
|
|
1428
1456
|
if (typeof r !== 'undefined') {
|
|
1429
1457
|
return r;
|
|
1430
1458
|
}
|
|
@@ -1520,9 +1548,7 @@ var parser = (function () {
|
|
|
1520
1548
|
last_line: this.yylineno + 1,
|
|
1521
1549
|
first_column: this.yylloc.first_column,
|
|
1522
1550
|
last_column: lines
|
|
1523
|
-
? (lines.length === oldLines.length
|
|
1524
|
-
? this.yylloc.first_column
|
|
1525
|
-
: 0) +
|
|
1551
|
+
? (lines.length === oldLines.length ? this.yylloc.first_column : 0) +
|
|
1526
1552
|
oldLines[oldLines.length - lines.length].length -
|
|
1527
1553
|
lines[0].length
|
|
1528
1554
|
: this.yylloc.first_column - len,
|
|
@@ -1562,7 +1588,7 @@ var parser = (function () {
|
|
|
1562
1588
|
// displays already matched input, i.e. for error messages
|
|
1563
1589
|
pastInput: function () {
|
|
1564
1590
|
var past = this.matched.substr(0, this.matched.length - this.match.length);
|
|
1565
|
-
return (
|
|
1591
|
+
return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, '');
|
|
1566
1592
|
},
|
|
1567
1593
|
// displays upcoming input, i.e. for error messages
|
|
1568
1594
|
upcomingInput: function () {
|
|
@@ -1616,8 +1642,7 @@ var parser = (function () {
|
|
|
1616
1642
|
last_line: this.yylineno + 1,
|
|
1617
1643
|
first_column: this.yylloc.last_column,
|
|
1618
1644
|
last_column: lines
|
|
1619
|
-
? lines[lines.length - 1].length -
|
|
1620
|
-
lines[lines.length - 1].match(/\r?\n?/)[0].length
|
|
1645
|
+
? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length
|
|
1621
1646
|
: this.yylloc.last_column + match[0].length,
|
|
1622
1647
|
};
|
|
1623
1648
|
this.yytext += match[0];
|
|
@@ -1733,8 +1758,7 @@ var parser = (function () {
|
|
|
1733
1758
|
},
|
|
1734
1759
|
// produce the lexer rule set which is active for the currently active lexer condition state
|
|
1735
1760
|
_currentRules: function _currentRules() {
|
|
1736
|
-
if (this.conditionStack.length &&
|
|
1737
|
-
this.conditionStack[this.conditionStack.length - 1]) {
|
|
1761
|
+
if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) {
|
|
1738
1762
|
return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
|
|
1739
1763
|
}
|
|
1740
1764
|
else {
|
|
@@ -1783,94 +1807,94 @@ var parser = (function () {
|
|
|
1783
1807
|
return 13;
|
|
1784
1808
|
break;
|
|
1785
1809
|
case 4:
|
|
1786
|
-
return
|
|
1810
|
+
return 40;
|
|
1787
1811
|
break;
|
|
1788
1812
|
case 5:
|
|
1789
1813
|
return 14;
|
|
1790
1814
|
break;
|
|
1791
1815
|
case 6:
|
|
1792
|
-
return
|
|
1816
|
+
return 29;
|
|
1793
1817
|
break;
|
|
1794
1818
|
case 7:
|
|
1795
|
-
return
|
|
1819
|
+
return 33;
|
|
1796
1820
|
break;
|
|
1797
1821
|
case 8:
|
|
1798
|
-
return
|
|
1822
|
+
return 31;
|
|
1799
1823
|
break;
|
|
1800
1824
|
case 9:
|
|
1801
|
-
return
|
|
1825
|
+
return 28;
|
|
1802
1826
|
break;
|
|
1803
1827
|
case 10:
|
|
1804
|
-
return
|
|
1828
|
+
return 32;
|
|
1805
1829
|
break;
|
|
1806
1830
|
case 11:
|
|
1807
|
-
return
|
|
1831
|
+
return 30;
|
|
1808
1832
|
break;
|
|
1809
1833
|
case 12:
|
|
1810
|
-
return
|
|
1834
|
+
return 37;
|
|
1811
1835
|
break;
|
|
1812
1836
|
case 13:
|
|
1813
|
-
return
|
|
1837
|
+
return 38;
|
|
1814
1838
|
break;
|
|
1815
1839
|
case 14:
|
|
1816
|
-
return
|
|
1840
|
+
return 34;
|
|
1817
1841
|
break;
|
|
1818
1842
|
case 15:
|
|
1819
|
-
return
|
|
1843
|
+
return 39;
|
|
1820
1844
|
break;
|
|
1821
1845
|
case 16:
|
|
1822
|
-
return
|
|
1846
|
+
return 24;
|
|
1823
1847
|
break;
|
|
1824
1848
|
case 17:
|
|
1825
|
-
return
|
|
1849
|
+
return 23;
|
|
1826
1850
|
break;
|
|
1827
1851
|
case 18:
|
|
1828
|
-
return
|
|
1852
|
+
return 22;
|
|
1829
1853
|
break;
|
|
1830
1854
|
case 19:
|
|
1831
|
-
return
|
|
1855
|
+
return 42;
|
|
1832
1856
|
break;
|
|
1833
1857
|
case 20:
|
|
1834
|
-
return
|
|
1858
|
+
return 41;
|
|
1835
1859
|
break;
|
|
1836
1860
|
case 21:
|
|
1837
|
-
return
|
|
1861
|
+
return 49;
|
|
1838
1862
|
break;
|
|
1839
1863
|
case 22:
|
|
1840
|
-
return
|
|
1864
|
+
return 45;
|
|
1841
1865
|
break;
|
|
1842
1866
|
case 23:
|
|
1843
|
-
return
|
|
1867
|
+
return 46;
|
|
1844
1868
|
break;
|
|
1845
1869
|
case 24:
|
|
1846
|
-
return
|
|
1870
|
+
return 48;
|
|
1847
1871
|
break;
|
|
1848
1872
|
case 25:
|
|
1849
|
-
return
|
|
1873
|
+
return 50;
|
|
1850
1874
|
break;
|
|
1851
1875
|
case 26:
|
|
1852
|
-
return
|
|
1876
|
+
return 18;
|
|
1853
1877
|
break;
|
|
1854
1878
|
case 27:
|
|
1855
|
-
return
|
|
1879
|
+
return 19;
|
|
1856
1880
|
break;
|
|
1857
1881
|
case 28:
|
|
1858
|
-
return
|
|
1882
|
+
return 17;
|
|
1859
1883
|
break;
|
|
1860
1884
|
case 29:
|
|
1861
|
-
return
|
|
1885
|
+
return 16;
|
|
1862
1886
|
break;
|
|
1863
1887
|
case 30:
|
|
1864
|
-
return
|
|
1888
|
+
return 20;
|
|
1865
1889
|
break;
|
|
1866
1890
|
case 31:
|
|
1867
|
-
return
|
|
1891
|
+
return 21;
|
|
1868
1892
|
break;
|
|
1869
1893
|
case 32:
|
|
1870
|
-
return
|
|
1894
|
+
return 35;
|
|
1871
1895
|
break;
|
|
1872
1896
|
case 33:
|
|
1873
|
-
return
|
|
1897
|
+
return 36;
|
|
1874
1898
|
break;
|
|
1875
1899
|
case 34:
|
|
1876
1900
|
return '[';
|
|
@@ -1882,10 +1906,10 @@ var parser = (function () {
|
|
|
1882
1906
|
return 9;
|
|
1883
1907
|
break;
|
|
1884
1908
|
case 37:
|
|
1885
|
-
return
|
|
1909
|
+
return 25;
|
|
1886
1910
|
break;
|
|
1887
1911
|
case 38:
|
|
1888
|
-
return
|
|
1912
|
+
return 26;
|
|
1889
1913
|
break;
|
|
1890
1914
|
case 39:
|
|
1891
1915
|
return 10;
|
|
@@ -1949,9 +1973,8 @@ var parser = (function () {
|
|
|
1949
1973
|
conditions: {
|
|
1950
1974
|
INITIAL: {
|
|
1951
1975
|
rules: [
|
|
1952
|
-
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
1953
|
-
|
|
1954
|
-
36, 37, 38, 39, 40, 41, 42,
|
|
1976
|
+
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
|
1977
|
+
24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
|
1955
1978
|
],
|
|
1956
1979
|
inclusive: true,
|
|
1957
1980
|
},
|