@adaptabletools/adaptable 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 +1 -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 +45 -15
- package/src/Api/Implementation/ColumnFilterApiImpl.js +7 -7
- package/src/Api/Implementation/ColumnMenuApiImpl.d.ts +8 -0
- package/src/Api/Implementation/ColumnMenuApiImpl.js +12 -0
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +33 -0
- package/src/Api/Implementation/{ScopeApiImpl.js → ColumnScopeApiImpl.js} +65 -19
- 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 +9 -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 +20 -28
- package/src/Api/Implementation/NoteApiImpl.d.ts +18 -0
- package/src/Api/Implementation/NoteApiImpl.js +40 -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 +7 -1
- package/src/Api/Internal/CommentsInternalApi.d.ts +4 -0
- package/src/Api/Internal/CommentsInternalApi.js +14 -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 +14 -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 +1 -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 +1 -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 +125 -1
- package/src/PredefinedConfig/Common/RowScope.d.ts +17 -0
- package/src/PredefinedConfig/Common/RowScope.js +1 -0
- package/src/PredefinedConfig/Common/RowSummary.d.ts +21 -0
- package/src/PredefinedConfig/Common/RowSummary.js +17 -0
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +30 -0
- package/src/PredefinedConfig/Common/TransposeConfig.js +1 -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 +1 -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 +0 -34
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +9 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +32 -10
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/{NotesRedux.js → NoteRedux.js} +24 -24
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +5 -13
- package/src/Redux/ActionsReducers/PopupRedux.js +0 -19
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +15 -4
- package/src/Redux/ActionsReducers/SystemRedux.js +24 -9
- package/src/Redux/Store/AdaptableStore.js +48 -30
- 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 +70 -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 +11 -21
- 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 +58 -44
- 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 +55 -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 +1 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +6 -6
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +433 -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 +4 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +3 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +19 -0
- 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 -190
- 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 +155 -0
- package/src/Utilities/Services/ValidationService.js +2 -2
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +14 -0
- package/src/Utilities/license/decode.js +1 -65
- package/src/Utilities/license/hashing.js +1 -43
- 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 +42 -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 +174 -0
- package/src/View/License/LicenseWatermark.js +1 -61
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +14 -9
- 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 +120 -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 +46 -0
- package/src/agGrid/weightedAverage.d.ts +0 -2
- package/src/agGrid/weightedAverage.js +0 -54
- package/src/components/Accordion.d.ts +7 -0
- package/src/components/Accordion.js +36 -0
- package/src/components/CheckBox/index.js +1 -1
- 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 +1 -14
- 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 +4 -0
- package/src/components/icons/copy.d.ts +3 -0
- package/src/components/icons/copy.js +4 -0
- package/src/components/icons/csv.d.ts +3 -0
- package/src/components/icons/csv.js +4 -0
- package/src/components/icons/data-object.d.ts +3 -0
- package/src/components/icons/data-object.js +4 -0
- package/src/components/icons/excel.d.ts +3 -0
- package/src/components/icons/excel.js +5 -0
- package/src/components/icons/expand-all.d.ts +3 -0
- package/src/components/icons/expand-all.js +4 -0
- package/src/components/icons/filter-off.d.ts +3 -0
- package/src/components/icons/filter-off.js +4 -0
- package/src/components/icons/grid-info.d.ts +3 -0
- package/src/components/icons/grid-info.js +4 -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 +4 -0
- package/src/components/icons/select-all.d.ts +3 -0
- package/src/components/icons/select-all.js +4 -0
- package/src/components/icons/select-fwd.d.ts +3 -0
- package/src/components/icons/select-fwd.js +4 -0
- package/src/components/icons/select-off.d.ts +3 -0
- package/src/components/icons/select-off.js +4 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +230 -116
- package/src/metamodel/adaptable.metamodel.js +1 -9408
- 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.esm.tsbuildinfo +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +0 -234
- package/src/AdaptableOptions/MenuOptions.js +0 -95
- 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 -35
- 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 -4
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -38
- package/src/Strategy/CommentsModule.d.ts +0 -17
- package/src/Strategy/CommentsModule.js +0 -78
- package/src/Strategy/NotesModule.d.ts +0 -10
- package/src/Strategy/NotesModule.js +0 -57
- package/src/View/Components/ScopeComponent.d.ts +0 -24
- package/src/View/Components/ScopeComponent.js +0 -133
- package/src/View/Export/Wizard/ReportScopeWizard.d.ts +0 -17
- package/src/View/Export/Wizard/ReportScopeWizard.js +0 -47
- 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
|
@@ -77,19 +77,18 @@ var parser = (function () {
|
|
|
77
77
|
for (o = o || {}, l = k.length; l--; o[k[l]] = v)
|
|
78
78
|
;
|
|
79
79
|
return o;
|
|
80
|
-
}, $V0 = [1, 5], $V1 = [1, 6], $V2 = [1, 7], $V3 = [1, 8], $V4 = [1, 9], $V5 = [1,
|
|
81
|
-
4, 7, 9,
|
|
82
|
-
|
|
83
|
-
], $
|
|
84
|
-
4, 7, 9,
|
|
85
|
-
|
|
86
|
-
], $
|
|
87
|
-
4, 7, 9,
|
|
88
|
-
|
|
89
|
-
], $
|
|
90
|
-
4, 7, 9,
|
|
91
|
-
|
|
92
|
-
], $VD = [1, 76], $VE = [44, 47, 49];
|
|
80
|
+
}, $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 = [
|
|
81
|
+
4, 7, 9, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39,
|
|
82
|
+
41, 42, 45, 46, 48, 50,
|
|
83
|
+
], $Vy = [9, 36], $Vz = [2, 6], $VA = [
|
|
84
|
+
4, 7, 9, 16, 17, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41, 42, 45, 46,
|
|
85
|
+
48, 50,
|
|
86
|
+
], $VB = [
|
|
87
|
+
4, 7, 9, 16, 17, 18, 19, 20, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41,
|
|
88
|
+
42, 45, 46, 48, 50,
|
|
89
|
+
], $VC = [4, 7, 9, 22, 23, 25, 26, 36, 42, 45, 46, 48, 50], $VD = [
|
|
90
|
+
4, 7, 9, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41, 42, 45, 46, 48, 50,
|
|
91
|
+
], $VE = [1, 77], $VF = [45, 48, 50];
|
|
93
92
|
var parser = {
|
|
94
93
|
trace: function trace() { },
|
|
95
94
|
yy: {},
|
|
@@ -107,41 +106,42 @@ var parser = (function () {
|
|
|
107
106
|
NUMBER: 12,
|
|
108
107
|
STRING: 13,
|
|
109
108
|
COL: 14,
|
|
110
|
-
|
|
111
|
-
'
|
|
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
|
-
|
|
109
|
+
FIELD: 15,
|
|
110
|
+
'+': 16,
|
|
111
|
+
'-': 17,
|
|
112
|
+
'*': 18,
|
|
113
|
+
'/': 19,
|
|
114
|
+
'%': 20,
|
|
115
|
+
'^': 21,
|
|
116
|
+
'|': 22,
|
|
117
|
+
'&': 23,
|
|
118
|
+
'!': 24,
|
|
119
|
+
'?': 25,
|
|
120
|
+
':': 26,
|
|
121
|
+
case_when: 27,
|
|
122
|
+
'=': 28,
|
|
123
|
+
'!=': 29,
|
|
124
|
+
'<': 30,
|
|
125
|
+
'<=': 31,
|
|
126
|
+
'>': 32,
|
|
127
|
+
'>=': 33,
|
|
128
|
+
BETWEEN: 34,
|
|
129
|
+
'(': 35,
|
|
130
|
+
')': 36,
|
|
131
|
+
STARTS_WITH: 37,
|
|
132
|
+
ENDS_WITH: 38,
|
|
133
|
+
CONTAINS: 39,
|
|
134
|
+
FUNCTION: 40,
|
|
135
|
+
IN: 41,
|
|
136
|
+
WHERE: 42,
|
|
137
|
+
case_expression_value: 43,
|
|
138
|
+
when_then_list: 44,
|
|
139
|
+
WHEN: 45,
|
|
140
|
+
THEN: 46,
|
|
141
|
+
case_when_else: 47,
|
|
142
|
+
ELSE: 48,
|
|
143
|
+
CASE: 49,
|
|
144
|
+
END: 50,
|
|
145
145
|
$accept: 0,
|
|
146
146
|
$end: 1,
|
|
147
147
|
},
|
|
@@ -155,37 +155,38 @@ var parser = (function () {
|
|
|
155
155
|
12: 'NUMBER',
|
|
156
156
|
13: 'STRING',
|
|
157
157
|
14: 'COL',
|
|
158
|
-
15: '
|
|
159
|
-
16: '
|
|
160
|
-
17: '
|
|
161
|
-
18: '
|
|
162
|
-
19: '
|
|
163
|
-
20: '
|
|
164
|
-
21: '
|
|
165
|
-
22: '
|
|
166
|
-
23: '
|
|
167
|
-
24: '
|
|
168
|
-
25: '
|
|
169
|
-
|
|
170
|
-
28: '
|
|
171
|
-
29: '
|
|
172
|
-
30: '
|
|
173
|
-
31: '
|
|
174
|
-
32: '
|
|
175
|
-
33: '
|
|
176
|
-
34: '
|
|
177
|
-
35: '
|
|
178
|
-
36: '
|
|
179
|
-
37: '
|
|
180
|
-
38: '
|
|
181
|
-
39: '
|
|
182
|
-
40: '
|
|
183
|
-
41: '
|
|
184
|
-
|
|
185
|
-
45: '
|
|
186
|
-
|
|
187
|
-
48: '
|
|
188
|
-
49: '
|
|
158
|
+
15: 'FIELD',
|
|
159
|
+
16: '+',
|
|
160
|
+
17: '-',
|
|
161
|
+
18: '*',
|
|
162
|
+
19: '/',
|
|
163
|
+
20: '%',
|
|
164
|
+
21: '^',
|
|
165
|
+
22: '|',
|
|
166
|
+
23: '&',
|
|
167
|
+
24: '!',
|
|
168
|
+
25: '?',
|
|
169
|
+
26: ':',
|
|
170
|
+
28: '=',
|
|
171
|
+
29: '!=',
|
|
172
|
+
30: '<',
|
|
173
|
+
31: '<=',
|
|
174
|
+
32: '>',
|
|
175
|
+
33: '>=',
|
|
176
|
+
34: 'BETWEEN',
|
|
177
|
+
35: '(',
|
|
178
|
+
36: ')',
|
|
179
|
+
37: 'STARTS_WITH',
|
|
180
|
+
38: 'ENDS_WITH',
|
|
181
|
+
39: 'CONTAINS',
|
|
182
|
+
40: 'FUNCTION',
|
|
183
|
+
41: 'IN',
|
|
184
|
+
42: 'WHERE',
|
|
185
|
+
45: 'WHEN',
|
|
186
|
+
46: 'THEN',
|
|
187
|
+
48: 'ELSE',
|
|
188
|
+
49: 'CASE',
|
|
189
|
+
50: 'END',
|
|
189
190
|
},
|
|
190
191
|
productions_: [
|
|
191
192
|
0,
|
|
@@ -202,6 +203,7 @@ var parser = (function () {
|
|
|
202
203
|
[6, 1],
|
|
203
204
|
[6, 1],
|
|
204
205
|
[6, 1],
|
|
206
|
+
[6, 1],
|
|
205
207
|
[6, 3],
|
|
206
208
|
[6, 3],
|
|
207
209
|
[6, 3],
|
|
@@ -228,13 +230,13 @@ var parser = (function () {
|
|
|
228
230
|
[6, 5],
|
|
229
231
|
[6, 3],
|
|
230
232
|
[6, 3],
|
|
231
|
-
[
|
|
232
|
-
[
|
|
233
|
-
[
|
|
234
|
-
[
|
|
235
|
-
[
|
|
236
|
-
[
|
|
237
|
-
[
|
|
233
|
+
[43, 0],
|
|
234
|
+
[43, 1],
|
|
235
|
+
[44, 4],
|
|
236
|
+
[44, 5],
|
|
237
|
+
[47, 0],
|
|
238
|
+
[47, 2],
|
|
239
|
+
[27, 5],
|
|
238
240
|
],
|
|
239
241
|
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate /* action[1] */, $$ /* vstack */, _$ /* lstack */) {
|
|
240
242
|
/* this == yyval */
|
|
@@ -251,7 +253,7 @@ var parser = (function () {
|
|
|
251
253
|
this.$ = [$$[$0]];
|
|
252
254
|
break;
|
|
253
255
|
case 4:
|
|
254
|
-
case
|
|
256
|
+
case 39:
|
|
255
257
|
this.$ = $$[$0 - 1];
|
|
256
258
|
break;
|
|
257
259
|
case 5:
|
|
@@ -274,97 +276,100 @@ var parser = (function () {
|
|
|
274
276
|
this.$ = $$[$0].slice(1, -1);
|
|
275
277
|
break;
|
|
276
278
|
case 13:
|
|
277
|
-
this.$ = yy.node('COL', [$$[$0].slice(1, -1)], this._$, '
|
|
279
|
+
this.$ = yy.node('COL', [$$[$0].slice(1, -1)], this._$, 'VALUE_REF');
|
|
278
280
|
break;
|
|
279
281
|
case 14:
|
|
280
|
-
this.$ = yy.node('
|
|
282
|
+
this.$ = yy.node('FIELD', [FIELD.slice(1, -1)], this._$, 'VALUE_REF');
|
|
281
283
|
break;
|
|
282
284
|
case 15:
|
|
283
|
-
this.$ = yy.node('
|
|
285
|
+
this.$ = yy.node('ADD', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
284
286
|
break;
|
|
285
287
|
case 16:
|
|
286
|
-
this.$ = yy.node('
|
|
288
|
+
this.$ = yy.node('SUB', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
287
289
|
break;
|
|
288
290
|
case 17:
|
|
289
|
-
this.$ = yy.node('
|
|
291
|
+
this.$ = yy.node('MUL', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
290
292
|
break;
|
|
291
293
|
case 18:
|
|
292
|
-
this.$ = yy.node('
|
|
294
|
+
this.$ = yy.node('DIV', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
293
295
|
break;
|
|
294
296
|
case 19:
|
|
295
|
-
this.$ = yy.node('
|
|
297
|
+
this.$ = yy.node('MOD', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
296
298
|
break;
|
|
297
299
|
case 20:
|
|
298
|
-
this.$ = yy.node('
|
|
300
|
+
this.$ = yy.node('POW', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
299
301
|
break;
|
|
300
302
|
case 21:
|
|
301
|
-
this.$ = yy.node('
|
|
303
|
+
this.$ = yy.node('OR', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
302
304
|
break;
|
|
303
305
|
case 22:
|
|
304
|
-
this.$ = yy.node('
|
|
306
|
+
this.$ = yy.node('AND', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
305
307
|
break;
|
|
306
308
|
case 23:
|
|
307
|
-
this.$ = yy.node('
|
|
309
|
+
this.$ = yy.node('NOT', [$$[$0]], this._$, 'UNARY');
|
|
308
310
|
break;
|
|
309
311
|
case 24:
|
|
310
|
-
|
|
311
|
-
case 45:
|
|
312
|
-
this.$ = $$[$0];
|
|
312
|
+
this.$ = yy.node('IF', [$$[$0 - 4], $$[$0 - 2], $$[$0]], this._$, 'CONDITIONAL');
|
|
313
313
|
break;
|
|
314
314
|
case 25:
|
|
315
|
-
|
|
315
|
+
case 42:
|
|
316
|
+
case 46:
|
|
317
|
+
this.$ = $$[$0];
|
|
316
318
|
break;
|
|
317
319
|
case 26:
|
|
318
|
-
this.$ = yy.node('
|
|
320
|
+
this.$ = yy.node('EQ', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
319
321
|
break;
|
|
320
322
|
case 27:
|
|
321
|
-
this.$ = yy.node('
|
|
323
|
+
this.$ = yy.node('NEQ', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
322
324
|
break;
|
|
323
325
|
case 28:
|
|
324
|
-
this.$ = yy.node('
|
|
326
|
+
this.$ = yy.node('LT', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
325
327
|
break;
|
|
326
328
|
case 29:
|
|
327
|
-
this.$ = yy.node('
|
|
329
|
+
this.$ = yy.node('LTE', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
328
330
|
break;
|
|
329
331
|
case 30:
|
|
330
|
-
this.$ = yy.node('
|
|
332
|
+
this.$ = yy.node('GT', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
331
333
|
break;
|
|
332
334
|
case 31:
|
|
333
|
-
this.$ = yy.node('
|
|
335
|
+
this.$ = yy.node('GTE', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
334
336
|
break;
|
|
335
337
|
case 32:
|
|
336
|
-
this.$ = yy.node('
|
|
338
|
+
this.$ = yy.node('BETWEEN', [$$[$0 - 4], $$[$0 - 1]], this._$, 'INFIX');
|
|
337
339
|
break;
|
|
338
340
|
case 33:
|
|
339
|
-
this.$ = yy.node('
|
|
341
|
+
this.$ = yy.node('STARTS_WITH', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
340
342
|
break;
|
|
341
343
|
case 34:
|
|
342
|
-
this.$ = yy.node('
|
|
344
|
+
this.$ = yy.node('ENDS_WITH', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
343
345
|
break;
|
|
344
346
|
case 35:
|
|
345
|
-
this.$ = yy.node($$[$0 -
|
|
347
|
+
this.$ = yy.node('CONTAINS', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
346
348
|
break;
|
|
347
349
|
case 36:
|
|
348
|
-
this.$ =
|
|
350
|
+
this.$ = yy.node($$[$0 - 3].toUpperCase(), $$[$0 - 1], this._$, 'FUNCTION');
|
|
349
351
|
break;
|
|
350
352
|
case 37:
|
|
353
|
+
this.$ = -$$[$0];
|
|
354
|
+
break;
|
|
355
|
+
case 38:
|
|
351
356
|
this.$ = yy.node('IN', [$$[$0 - 4], $$[$0 - 1]], this._$, 'INFIX');
|
|
352
357
|
break;
|
|
353
|
-
case
|
|
358
|
+
case 40:
|
|
354
359
|
this.$ = yy.node('WHERE', [$$[$0 - 2], $$[$0]], this._$, 'INFIX');
|
|
355
360
|
break;
|
|
356
|
-
case
|
|
357
|
-
case
|
|
361
|
+
case 41:
|
|
362
|
+
case 45:
|
|
358
363
|
this.$ = null;
|
|
359
364
|
break;
|
|
360
|
-
case
|
|
365
|
+
case 43:
|
|
361
366
|
this.$ = [{ WHEN: $$[$0 - 2], THEN: $$[$0] }];
|
|
362
367
|
break;
|
|
363
|
-
case
|
|
368
|
+
case 44:
|
|
364
369
|
this.$ = $$[$0 - 4];
|
|
365
370
|
this.$.push({ WHEN: $$[$0 - 2], THEN: $$[$0] });
|
|
366
371
|
break;
|
|
367
|
-
case
|
|
372
|
+
case 47:
|
|
368
373
|
this.$ = yy.node('CASE', [$$[$0 - 3], $$[$0 - 2], $$[$0 - 1]], this._$, 'CONDITIONAL');
|
|
369
374
|
break;
|
|
370
375
|
}
|
|
@@ -380,18 +385,18 @@ var parser = (function () {
|
|
|
380
385
|
12: $V2,
|
|
381
386
|
13: $V3,
|
|
382
387
|
14: $V4,
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
388
|
+
15: $V5,
|
|
389
|
+
17: $V6,
|
|
390
|
+
24: $V7,
|
|
391
|
+
27: 12,
|
|
392
|
+
35: $V8,
|
|
393
|
+
40: $V9,
|
|
394
|
+
49: $Va,
|
|
389
395
|
},
|
|
390
396
|
{ 1: [3] },
|
|
391
397
|
{ 1: [2, 1] },
|
|
392
|
-
{ 4: [1,
|
|
393
|
-
o($
|
|
394
|
-
15: $Vb,
|
|
398
|
+
{ 4: [1, 17], 7: [1, 18] },
|
|
399
|
+
o($Vb, [2, 3], {
|
|
395
400
|
16: $Vc,
|
|
396
401
|
17: $Vd,
|
|
397
402
|
18: $Ve,
|
|
@@ -399,114 +404,107 @@ var parser = (function () {
|
|
|
399
404
|
20: $Vg,
|
|
400
405
|
21: $Vh,
|
|
401
406
|
22: $Vi,
|
|
402
|
-
|
|
403
|
-
|
|
407
|
+
23: $Vj,
|
|
408
|
+
25: $Vk,
|
|
404
409
|
28: $Vl,
|
|
405
410
|
29: $Vm,
|
|
406
411
|
30: $Vn,
|
|
407
412
|
31: $Vo,
|
|
408
413
|
32: $Vp,
|
|
409
414
|
33: $Vq,
|
|
410
|
-
|
|
415
|
+
34: $Vr,
|
|
411
416
|
37: $Vs,
|
|
412
417
|
38: $Vt,
|
|
413
|
-
|
|
418
|
+
39: $Vu,
|
|
414
419
|
41: $Vv,
|
|
420
|
+
42: $Vw,
|
|
415
421
|
}),
|
|
416
|
-
o($
|
|
417
|
-
o($
|
|
418
|
-
o($
|
|
419
|
-
o($
|
|
420
|
-
o($
|
|
422
|
+
o($Vx, [2, 9]),
|
|
423
|
+
o($Vx, [2, 10]),
|
|
424
|
+
o($Vx, [2, 11]),
|
|
425
|
+
o($Vx, [2, 12]),
|
|
426
|
+
o($Vx, [2, 13]),
|
|
427
|
+
o($Vx, [2, 14]),
|
|
421
428
|
{
|
|
422
|
-
6:
|
|
429
|
+
6: 40,
|
|
423
430
|
10: $V0,
|
|
424
431
|
11: $V1,
|
|
425
432
|
12: $V2,
|
|
426
433
|
13: $V3,
|
|
427
434
|
14: $V4,
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
435
|
+
15: $V5,
|
|
436
|
+
17: $V6,
|
|
437
|
+
24: $V7,
|
|
438
|
+
27: 12,
|
|
439
|
+
35: $V8,
|
|
440
|
+
40: $V9,
|
|
441
|
+
49: $Va,
|
|
434
442
|
},
|
|
435
|
-
o($
|
|
436
|
-
{
|
|
443
|
+
o($Vx, [2, 25]),
|
|
444
|
+
{ 35: [1, 41] },
|
|
437
445
|
{
|
|
438
|
-
6:
|
|
446
|
+
6: 42,
|
|
439
447
|
10: $V0,
|
|
440
448
|
11: $V1,
|
|
441
449
|
12: $V2,
|
|
442
450
|
13: $V3,
|
|
443
451
|
14: $V4,
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
452
|
+
15: $V5,
|
|
453
|
+
17: $V6,
|
|
454
|
+
24: $V7,
|
|
455
|
+
27: 12,
|
|
456
|
+
35: $V8,
|
|
457
|
+
40: $V9,
|
|
458
|
+
49: $Va,
|
|
450
459
|
},
|
|
451
460
|
{
|
|
452
|
-
6:
|
|
461
|
+
6: 43,
|
|
453
462
|
10: $V0,
|
|
454
463
|
11: $V1,
|
|
455
464
|
12: $V2,
|
|
456
465
|
13: $V3,
|
|
457
466
|
14: $V4,
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
467
|
+
15: $V5,
|
|
468
|
+
17: $V6,
|
|
469
|
+
24: $V7,
|
|
470
|
+
27: 12,
|
|
471
|
+
35: $V8,
|
|
472
|
+
40: $V9,
|
|
473
|
+
49: $Va,
|
|
464
474
|
},
|
|
465
475
|
{
|
|
466
|
-
6:
|
|
476
|
+
6: 45,
|
|
467
477
|
10: $V0,
|
|
468
478
|
11: $V1,
|
|
469
479
|
12: $V2,
|
|
470
480
|
13: $V3,
|
|
471
481
|
14: $V4,
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
482
|
+
15: $V5,
|
|
483
|
+
17: $V6,
|
|
484
|
+
24: $V7,
|
|
485
|
+
27: 12,
|
|
486
|
+
35: $V8,
|
|
487
|
+
40: $V9,
|
|
488
|
+
43: 44,
|
|
489
|
+
45: [2, 41],
|
|
490
|
+
49: $Va,
|
|
480
491
|
},
|
|
481
492
|
{ 1: [2, 2] },
|
|
482
|
-
o($
|
|
483
|
-
|
|
484
|
-
6: 45,
|
|
485
|
-
10: $V0,
|
|
486
|
-
11: $V1,
|
|
487
|
-
12: $V2,
|
|
488
|
-
13: $V3,
|
|
489
|
-
14: $V4,
|
|
490
|
-
16: $V5,
|
|
491
|
-
23: $V6,
|
|
492
|
-
34: $V7,
|
|
493
|
-
39: $V8,
|
|
494
|
-
48: $V9,
|
|
495
|
-
}),
|
|
496
|
-
{
|
|
493
|
+
o($Vb, [2, 4], {
|
|
494
|
+
27: 12,
|
|
497
495
|
6: 46,
|
|
498
496
|
10: $V0,
|
|
499
497
|
11: $V1,
|
|
500
498
|
12: $V2,
|
|
501
499
|
13: $V3,
|
|
502
500
|
14: $V4,
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
},
|
|
501
|
+
15: $V5,
|
|
502
|
+
17: $V6,
|
|
503
|
+
24: $V7,
|
|
504
|
+
35: $V8,
|
|
505
|
+
40: $V9,
|
|
506
|
+
49: $Va,
|
|
507
|
+
}),
|
|
510
508
|
{
|
|
511
509
|
6: 47,
|
|
512
510
|
10: $V0,
|
|
@@ -514,12 +512,13 @@ var parser = (function () {
|
|
|
514
512
|
12: $V2,
|
|
515
513
|
13: $V3,
|
|
516
514
|
14: $V4,
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
515
|
+
15: $V5,
|
|
516
|
+
17: $V6,
|
|
517
|
+
24: $V7,
|
|
518
|
+
27: 12,
|
|
519
|
+
35: $V8,
|
|
520
|
+
40: $V9,
|
|
521
|
+
49: $Va,
|
|
523
522
|
},
|
|
524
523
|
{
|
|
525
524
|
6: 48,
|
|
@@ -528,12 +527,13 @@ var parser = (function () {
|
|
|
528
527
|
12: $V2,
|
|
529
528
|
13: $V3,
|
|
530
529
|
14: $V4,
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
530
|
+
15: $V5,
|
|
531
|
+
17: $V6,
|
|
532
|
+
24: $V7,
|
|
533
|
+
27: 12,
|
|
534
|
+
35: $V8,
|
|
535
|
+
40: $V9,
|
|
536
|
+
49: $Va,
|
|
537
537
|
},
|
|
538
538
|
{
|
|
539
539
|
6: 49,
|
|
@@ -542,12 +542,13 @@ var parser = (function () {
|
|
|
542
542
|
12: $V2,
|
|
543
543
|
13: $V3,
|
|
544
544
|
14: $V4,
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
545
|
+
15: $V5,
|
|
546
|
+
17: $V6,
|
|
547
|
+
24: $V7,
|
|
548
|
+
27: 12,
|
|
549
|
+
35: $V8,
|
|
550
|
+
40: $V9,
|
|
551
|
+
49: $Va,
|
|
551
552
|
},
|
|
552
553
|
{
|
|
553
554
|
6: 50,
|
|
@@ -556,12 +557,13 @@ var parser = (function () {
|
|
|
556
557
|
12: $V2,
|
|
557
558
|
13: $V3,
|
|
558
559
|
14: $V4,
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
560
|
+
15: $V5,
|
|
561
|
+
17: $V6,
|
|
562
|
+
24: $V7,
|
|
563
|
+
27: 12,
|
|
564
|
+
35: $V8,
|
|
565
|
+
40: $V9,
|
|
566
|
+
49: $Va,
|
|
565
567
|
},
|
|
566
568
|
{
|
|
567
569
|
6: 51,
|
|
@@ -570,12 +572,13 @@ var parser = (function () {
|
|
|
570
572
|
12: $V2,
|
|
571
573
|
13: $V3,
|
|
572
574
|
14: $V4,
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
575
|
+
15: $V5,
|
|
576
|
+
17: $V6,
|
|
577
|
+
24: $V7,
|
|
578
|
+
27: 12,
|
|
579
|
+
35: $V8,
|
|
580
|
+
40: $V9,
|
|
581
|
+
49: $Va,
|
|
579
582
|
},
|
|
580
583
|
{
|
|
581
584
|
6: 52,
|
|
@@ -584,12 +587,13 @@ var parser = (function () {
|
|
|
584
587
|
12: $V2,
|
|
585
588
|
13: $V3,
|
|
586
589
|
14: $V4,
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
590
|
+
15: $V5,
|
|
591
|
+
17: $V6,
|
|
592
|
+
24: $V7,
|
|
593
|
+
27: 12,
|
|
594
|
+
35: $V8,
|
|
595
|
+
40: $V9,
|
|
596
|
+
49: $Va,
|
|
593
597
|
},
|
|
594
598
|
{
|
|
595
599
|
6: 53,
|
|
@@ -598,12 +602,13 @@ var parser = (function () {
|
|
|
598
602
|
12: $V2,
|
|
599
603
|
13: $V3,
|
|
600
604
|
14: $V4,
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
605
|
+
15: $V5,
|
|
606
|
+
17: $V6,
|
|
607
|
+
24: $V7,
|
|
608
|
+
27: 12,
|
|
609
|
+
35: $V8,
|
|
610
|
+
40: $V9,
|
|
611
|
+
49: $Va,
|
|
607
612
|
},
|
|
608
613
|
{
|
|
609
614
|
6: 54,
|
|
@@ -612,12 +617,13 @@ var parser = (function () {
|
|
|
612
617
|
12: $V2,
|
|
613
618
|
13: $V3,
|
|
614
619
|
14: $V4,
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
620
|
+
15: $V5,
|
|
621
|
+
17: $V6,
|
|
622
|
+
24: $V7,
|
|
623
|
+
27: 12,
|
|
624
|
+
35: $V8,
|
|
625
|
+
40: $V9,
|
|
626
|
+
49: $Va,
|
|
621
627
|
},
|
|
622
628
|
{
|
|
623
629
|
6: 55,
|
|
@@ -626,12 +632,13 @@ var parser = (function () {
|
|
|
626
632
|
12: $V2,
|
|
627
633
|
13: $V3,
|
|
628
634
|
14: $V4,
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
+
15: $V5,
|
|
636
|
+
17: $V6,
|
|
637
|
+
24: $V7,
|
|
638
|
+
27: 12,
|
|
639
|
+
35: $V8,
|
|
640
|
+
40: $V9,
|
|
641
|
+
49: $Va,
|
|
635
642
|
},
|
|
636
643
|
{
|
|
637
644
|
6: 56,
|
|
@@ -640,12 +647,13 @@ var parser = (function () {
|
|
|
640
647
|
12: $V2,
|
|
641
648
|
13: $V3,
|
|
642
649
|
14: $V4,
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
650
|
+
15: $V5,
|
|
651
|
+
17: $V6,
|
|
652
|
+
24: $V7,
|
|
653
|
+
27: 12,
|
|
654
|
+
35: $V8,
|
|
655
|
+
40: $V9,
|
|
656
|
+
49: $Va,
|
|
649
657
|
},
|
|
650
658
|
{
|
|
651
659
|
6: 57,
|
|
@@ -654,12 +662,13 @@ var parser = (function () {
|
|
|
654
662
|
12: $V2,
|
|
655
663
|
13: $V3,
|
|
656
664
|
14: $V4,
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
665
|
+
15: $V5,
|
|
666
|
+
17: $V6,
|
|
667
|
+
24: $V7,
|
|
668
|
+
27: 12,
|
|
669
|
+
35: $V8,
|
|
670
|
+
40: $V9,
|
|
671
|
+
49: $Va,
|
|
663
672
|
},
|
|
664
673
|
{
|
|
665
674
|
6: 58,
|
|
@@ -668,12 +677,13 @@ var parser = (function () {
|
|
|
668
677
|
12: $V2,
|
|
669
678
|
13: $V3,
|
|
670
679
|
14: $V4,
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
680
|
+
15: $V5,
|
|
681
|
+
17: $V6,
|
|
682
|
+
24: $V7,
|
|
683
|
+
27: 12,
|
|
684
|
+
35: $V8,
|
|
685
|
+
40: $V9,
|
|
686
|
+
49: $Va,
|
|
677
687
|
},
|
|
678
688
|
{
|
|
679
689
|
6: 59,
|
|
@@ -682,12 +692,13 @@ var parser = (function () {
|
|
|
682
692
|
12: $V2,
|
|
683
693
|
13: $V3,
|
|
684
694
|
14: $V4,
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
695
|
+
15: $V5,
|
|
696
|
+
17: $V6,
|
|
697
|
+
24: $V7,
|
|
698
|
+
27: 12,
|
|
699
|
+
35: $V8,
|
|
700
|
+
40: $V9,
|
|
701
|
+
49: $Va,
|
|
691
702
|
},
|
|
692
703
|
{
|
|
693
704
|
6: 60,
|
|
@@ -696,28 +707,30 @@ var parser = (function () {
|
|
|
696
707
|
12: $V2,
|
|
697
708
|
13: $V3,
|
|
698
709
|
14: $V4,
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
710
|
+
15: $V5,
|
|
711
|
+
17: $V6,
|
|
712
|
+
24: $V7,
|
|
713
|
+
27: 12,
|
|
714
|
+
35: $V8,
|
|
715
|
+
40: $V9,
|
|
716
|
+
49: $Va,
|
|
705
717
|
},
|
|
706
|
-
{ 34: [1, 61] },
|
|
707
718
|
{
|
|
708
|
-
6:
|
|
719
|
+
6: 61,
|
|
709
720
|
10: $V0,
|
|
710
721
|
11: $V1,
|
|
711
722
|
12: $V2,
|
|
712
723
|
13: $V3,
|
|
713
724
|
14: $V4,
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
725
|
+
15: $V5,
|
|
726
|
+
17: $V6,
|
|
727
|
+
24: $V7,
|
|
728
|
+
27: 12,
|
|
729
|
+
35: $V8,
|
|
730
|
+
40: $V9,
|
|
731
|
+
49: $Va,
|
|
720
732
|
},
|
|
733
|
+
{ 35: [1, 62] },
|
|
721
734
|
{
|
|
722
735
|
6: 63,
|
|
723
736
|
10: $V0,
|
|
@@ -725,12 +738,13 @@ var parser = (function () {
|
|
|
725
738
|
12: $V2,
|
|
726
739
|
13: $V3,
|
|
727
740
|
14: $V4,
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
741
|
+
15: $V5,
|
|
742
|
+
17: $V6,
|
|
743
|
+
24: $V7,
|
|
744
|
+
27: 12,
|
|
745
|
+
35: $V8,
|
|
746
|
+
40: $V9,
|
|
747
|
+
49: $Va,
|
|
734
748
|
},
|
|
735
749
|
{
|
|
736
750
|
6: 64,
|
|
@@ -739,47 +753,64 @@ var parser = (function () {
|
|
|
739
753
|
12: $V2,
|
|
740
754
|
13: $V3,
|
|
741
755
|
14: $V4,
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
756
|
+
15: $V5,
|
|
757
|
+
17: $V6,
|
|
758
|
+
24: $V7,
|
|
759
|
+
27: 12,
|
|
760
|
+
35: $V8,
|
|
761
|
+
40: $V9,
|
|
762
|
+
49: $Va,
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
6: 65,
|
|
766
|
+
10: $V0,
|
|
767
|
+
11: $V1,
|
|
768
|
+
12: $V2,
|
|
769
|
+
13: $V3,
|
|
770
|
+
14: $V4,
|
|
771
|
+
15: $V5,
|
|
772
|
+
17: $V6,
|
|
773
|
+
24: $V7,
|
|
774
|
+
27: 12,
|
|
775
|
+
35: $V8,
|
|
776
|
+
40: $V9,
|
|
777
|
+
49: $Va,
|
|
748
778
|
},
|
|
749
|
-
{
|
|
779
|
+
{ 35: [1, 66] },
|
|
750
780
|
{
|
|
751
|
-
6:
|
|
781
|
+
6: 67,
|
|
752
782
|
10: $V0,
|
|
753
783
|
11: $V1,
|
|
754
784
|
12: $V2,
|
|
755
785
|
13: $V3,
|
|
756
786
|
14: $V4,
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
787
|
+
15: $V5,
|
|
788
|
+
17: $V6,
|
|
789
|
+
24: $V7,
|
|
790
|
+
27: 12,
|
|
791
|
+
35: $V8,
|
|
792
|
+
40: $V9,
|
|
793
|
+
49: $Va,
|
|
763
794
|
},
|
|
764
|
-
o($
|
|
765
|
-
o($
|
|
766
|
-
|
|
767
|
-
8:
|
|
768
|
-
6:
|
|
795
|
+
o($Vx, [2, 23]),
|
|
796
|
+
o($Vy, $Vz, {
|
|
797
|
+
27: 12,
|
|
798
|
+
8: 68,
|
|
799
|
+
6: 69,
|
|
769
800
|
10: $V0,
|
|
770
801
|
11: $V1,
|
|
771
802
|
12: $V2,
|
|
772
803
|
13: $V3,
|
|
773
804
|
14: $V4,
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
805
|
+
15: $V5,
|
|
806
|
+
17: $V6,
|
|
807
|
+
24: $V7,
|
|
808
|
+
35: $V8,
|
|
809
|
+
40: $V9,
|
|
810
|
+
49: $Va,
|
|
779
811
|
}),
|
|
780
|
-
o($
|
|
812
|
+
o($Vx, [2, 37]),
|
|
781
813
|
{
|
|
782
|
-
15: $Vb,
|
|
783
814
|
16: $Vc,
|
|
784
815
|
17: $Vd,
|
|
785
816
|
18: $Ve,
|
|
@@ -787,24 +818,24 @@ var parser = (function () {
|
|
|
787
818
|
20: $Vg,
|
|
788
819
|
21: $Vh,
|
|
789
820
|
22: $Vi,
|
|
790
|
-
|
|
791
|
-
|
|
821
|
+
23: $Vj,
|
|
822
|
+
25: $Vk,
|
|
792
823
|
28: $Vl,
|
|
793
824
|
29: $Vm,
|
|
794
825
|
30: $Vn,
|
|
795
826
|
31: $Vo,
|
|
796
827
|
32: $Vp,
|
|
797
828
|
33: $Vq,
|
|
798
|
-
|
|
799
|
-
36:
|
|
829
|
+
34: $Vr,
|
|
830
|
+
36: [1, 70],
|
|
800
831
|
37: $Vs,
|
|
801
832
|
38: $Vt,
|
|
802
|
-
|
|
833
|
+
39: $Vu,
|
|
803
834
|
41: $Vv,
|
|
835
|
+
42: $Vw,
|
|
804
836
|
},
|
|
805
|
-
{
|
|
837
|
+
{ 44: 71, 45: [1, 72] },
|
|
806
838
|
{
|
|
807
|
-
15: $Vb,
|
|
808
839
|
16: $Vc,
|
|
809
840
|
17: $Vd,
|
|
810
841
|
18: $Ve,
|
|
@@ -812,23 +843,23 @@ var parser = (function () {
|
|
|
812
843
|
20: $Vg,
|
|
813
844
|
21: $Vh,
|
|
814
845
|
22: $Vi,
|
|
815
|
-
|
|
816
|
-
|
|
846
|
+
23: $Vj,
|
|
847
|
+
25: $Vk,
|
|
817
848
|
28: $Vl,
|
|
818
849
|
29: $Vm,
|
|
819
850
|
30: $Vn,
|
|
820
851
|
31: $Vo,
|
|
821
852
|
32: $Vp,
|
|
822
853
|
33: $Vq,
|
|
823
|
-
|
|
854
|
+
34: $Vr,
|
|
824
855
|
37: $Vs,
|
|
825
856
|
38: $Vt,
|
|
826
|
-
|
|
857
|
+
39: $Vu,
|
|
827
858
|
41: $Vv,
|
|
828
|
-
|
|
859
|
+
42: $Vw,
|
|
860
|
+
45: [2, 42],
|
|
829
861
|
},
|
|
830
|
-
o($
|
|
831
|
-
15: $Vb,
|
|
862
|
+
o($Vb, [2, 5], {
|
|
832
863
|
16: $Vc,
|
|
833
864
|
17: $Vd,
|
|
834
865
|
18: $Ve,
|
|
@@ -836,66 +867,66 @@ var parser = (function () {
|
|
|
836
867
|
20: $Vg,
|
|
837
868
|
21: $Vh,
|
|
838
869
|
22: $Vi,
|
|
839
|
-
|
|
840
|
-
|
|
870
|
+
23: $Vj,
|
|
871
|
+
25: $Vk,
|
|
841
872
|
28: $Vl,
|
|
842
873
|
29: $Vm,
|
|
843
874
|
30: $Vn,
|
|
844
875
|
31: $Vo,
|
|
845
876
|
32: $Vp,
|
|
846
877
|
33: $Vq,
|
|
847
|
-
|
|
878
|
+
34: $Vr,
|
|
848
879
|
37: $Vs,
|
|
849
880
|
38: $Vt,
|
|
850
|
-
|
|
881
|
+
39: $Vu,
|
|
851
882
|
41: $Vv,
|
|
883
|
+
42: $Vw,
|
|
852
884
|
}),
|
|
853
|
-
o($
|
|
854
|
-
o($
|
|
855
|
-
o($
|
|
856
|
-
o($
|
|
857
|
-
o($
|
|
858
|
-
o($
|
|
859
|
-
o($
|
|
860
|
-
15: $Vb,
|
|
885
|
+
o($VA, [2, 15], { 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
886
|
+
o($VA, [2, 16], { 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
887
|
+
o($VB, [2, 17], { 21: $Vh }),
|
|
888
|
+
o($VB, [2, 18], { 21: $Vh }),
|
|
889
|
+
o($VB, [2, 19], { 21: $Vh }),
|
|
890
|
+
o($Vx, [2, 20]),
|
|
891
|
+
o($VC, [2, 21], {
|
|
861
892
|
16: $Vc,
|
|
862
893
|
17: $Vd,
|
|
863
894
|
18: $Ve,
|
|
864
895
|
19: $Vf,
|
|
865
896
|
20: $Vg,
|
|
866
|
-
|
|
897
|
+
21: $Vh,
|
|
867
898
|
28: $Vl,
|
|
868
899
|
29: $Vm,
|
|
869
900
|
30: $Vn,
|
|
870
901
|
31: $Vo,
|
|
871
902
|
32: $Vp,
|
|
872
903
|
33: $Vq,
|
|
873
|
-
|
|
904
|
+
34: $Vr,
|
|
874
905
|
37: $Vs,
|
|
875
906
|
38: $Vt,
|
|
876
|
-
|
|
907
|
+
39: $Vu,
|
|
908
|
+
41: $Vv,
|
|
877
909
|
}),
|
|
878
|
-
o($
|
|
879
|
-
15: $Vb,
|
|
910
|
+
o($VC, [2, 22], {
|
|
880
911
|
16: $Vc,
|
|
881
912
|
17: $Vd,
|
|
882
913
|
18: $Ve,
|
|
883
914
|
19: $Vf,
|
|
884
915
|
20: $Vg,
|
|
885
|
-
|
|
916
|
+
21: $Vh,
|
|
886
917
|
28: $Vl,
|
|
887
918
|
29: $Vm,
|
|
888
919
|
30: $Vn,
|
|
889
920
|
31: $Vo,
|
|
890
921
|
32: $Vp,
|
|
891
922
|
33: $Vq,
|
|
892
|
-
|
|
923
|
+
34: $Vr,
|
|
893
924
|
37: $Vs,
|
|
894
925
|
38: $Vt,
|
|
895
|
-
|
|
926
|
+
39: $Vu,
|
|
927
|
+
41: $Vv,
|
|
896
928
|
}),
|
|
897
929
|
{
|
|
898
|
-
15: $Vb,
|
|
899
930
|
16: $Vc,
|
|
900
931
|
17: $Vd,
|
|
901
932
|
18: $Ve,
|
|
@@ -903,62 +934,64 @@ var parser = (function () {
|
|
|
903
934
|
20: $Vg,
|
|
904
935
|
21: $Vh,
|
|
905
936
|
22: $Vi,
|
|
906
|
-
|
|
907
|
-
25:
|
|
908
|
-
|
|
937
|
+
23: $Vj,
|
|
938
|
+
25: $Vk,
|
|
939
|
+
26: [1, 73],
|
|
909
940
|
28: $Vl,
|
|
910
941
|
29: $Vm,
|
|
911
942
|
30: $Vn,
|
|
912
943
|
31: $Vo,
|
|
913
944
|
32: $Vp,
|
|
914
945
|
33: $Vq,
|
|
915
|
-
|
|
946
|
+
34: $Vr,
|
|
916
947
|
37: $Vs,
|
|
917
948
|
38: $Vt,
|
|
918
|
-
|
|
949
|
+
39: $Vu,
|
|
919
950
|
41: $Vv,
|
|
951
|
+
42: $Vw,
|
|
920
952
|
},
|
|
921
|
-
o($
|
|
922
|
-
o($
|
|
923
|
-
o($
|
|
924
|
-
o($
|
|
925
|
-
o($
|
|
926
|
-
o($
|
|
927
|
-
o($
|
|
928
|
-
|
|
929
|
-
6:
|
|
930
|
-
8:
|
|
953
|
+
o($VD, [2, 26], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
954
|
+
o($VD, [2, 27], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
955
|
+
o($VD, [2, 28], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
956
|
+
o($VD, [2, 29], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
957
|
+
o($VD, [2, 30], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
958
|
+
o($VD, [2, 31], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
959
|
+
o($Vy, $Vz, {
|
|
960
|
+
27: 12,
|
|
961
|
+
6: 69,
|
|
962
|
+
8: 74,
|
|
931
963
|
10: $V0,
|
|
932
964
|
11: $V1,
|
|
933
965
|
12: $V2,
|
|
934
966
|
13: $V3,
|
|
935
967
|
14: $V4,
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
968
|
+
15: $V5,
|
|
969
|
+
17: $V6,
|
|
970
|
+
24: $V7,
|
|
971
|
+
35: $V8,
|
|
972
|
+
40: $V9,
|
|
973
|
+
49: $Va,
|
|
941
974
|
}),
|
|
942
|
-
o($
|
|
943
|
-
o($
|
|
944
|
-
o($
|
|
945
|
-
o($
|
|
946
|
-
|
|
947
|
-
6:
|
|
948
|
-
8:
|
|
975
|
+
o($VD, [2, 33], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
976
|
+
o($VD, [2, 34], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
977
|
+
o($VD, [2, 35], { 16: $Vc, 17: $Vd, 18: $Ve, 19: $Vf, 20: $Vg, 21: $Vh }),
|
|
978
|
+
o($Vy, $Vz, {
|
|
979
|
+
27: 12,
|
|
980
|
+
6: 69,
|
|
981
|
+
8: 75,
|
|
949
982
|
10: $V0,
|
|
950
983
|
11: $V1,
|
|
951
984
|
12: $V2,
|
|
952
985
|
13: $V3,
|
|
953
986
|
14: $V4,
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
987
|
+
15: $V5,
|
|
988
|
+
17: $V6,
|
|
989
|
+
24: $V7,
|
|
990
|
+
35: $V8,
|
|
991
|
+
40: $V9,
|
|
992
|
+
49: $Va,
|
|
959
993
|
}),
|
|
960
|
-
o([4, 7, 9,
|
|
961
|
-
15: $Vb,
|
|
994
|
+
o([4, 7, 9, 25, 26, 36, 42, 45, 46, 48, 50], [2, 40], {
|
|
962
995
|
16: $Vc,
|
|
963
996
|
17: $Vd,
|
|
964
997
|
18: $Ve,
|
|
@@ -966,21 +999,21 @@ var parser = (function () {
|
|
|
966
999
|
20: $Vg,
|
|
967
1000
|
21: $Vh,
|
|
968
1001
|
22: $Vi,
|
|
969
|
-
|
|
1002
|
+
23: $Vj,
|
|
970
1003
|
28: $Vl,
|
|
971
1004
|
29: $Vm,
|
|
972
1005
|
30: $Vn,
|
|
973
1006
|
31: $Vo,
|
|
974
1007
|
32: $Vp,
|
|
975
1008
|
33: $Vq,
|
|
976
|
-
|
|
1009
|
+
34: $Vr,
|
|
977
1010
|
37: $Vs,
|
|
978
1011
|
38: $Vt,
|
|
979
|
-
|
|
1012
|
+
39: $Vu,
|
|
1013
|
+
41: $Vv,
|
|
980
1014
|
}),
|
|
981
|
-
{ 9: $
|
|
982
|
-
o($
|
|
983
|
-
15: $Vb,
|
|
1015
|
+
{ 9: $VE, 36: [1, 76] },
|
|
1016
|
+
o($Vy, [2, 7], {
|
|
984
1017
|
16: $Vc,
|
|
985
1018
|
17: $Vd,
|
|
986
1019
|
18: $Ve,
|
|
@@ -988,98 +1021,103 @@ var parser = (function () {
|
|
|
988
1021
|
20: $Vg,
|
|
989
1022
|
21: $Vh,
|
|
990
1023
|
22: $Vi,
|
|
991
|
-
|
|
992
|
-
|
|
1024
|
+
23: $Vj,
|
|
1025
|
+
25: $Vk,
|
|
993
1026
|
28: $Vl,
|
|
994
1027
|
29: $Vm,
|
|
995
1028
|
30: $Vn,
|
|
996
1029
|
31: $Vo,
|
|
997
1030
|
32: $Vp,
|
|
998
1031
|
33: $Vq,
|
|
999
|
-
|
|
1032
|
+
34: $Vr,
|
|
1000
1033
|
37: $Vs,
|
|
1001
1034
|
38: $Vt,
|
|
1002
|
-
|
|
1035
|
+
39: $Vu,
|
|
1003
1036
|
41: $Vv,
|
|
1037
|
+
42: $Vw,
|
|
1004
1038
|
}),
|
|
1005
|
-
o($
|
|
1006
|
-
{
|
|
1039
|
+
o($Vx, [2, 39]),
|
|
1040
|
+
{ 45: [1, 79], 47: 78, 48: [1, 80], 50: [2, 45] },
|
|
1007
1041
|
{
|
|
1008
|
-
6:
|
|
1042
|
+
6: 81,
|
|
1009
1043
|
10: $V0,
|
|
1010
1044
|
11: $V1,
|
|
1011
1045
|
12: $V2,
|
|
1012
1046
|
13: $V3,
|
|
1013
1047
|
14: $V4,
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1048
|
+
15: $V5,
|
|
1049
|
+
17: $V6,
|
|
1050
|
+
24: $V7,
|
|
1051
|
+
27: 12,
|
|
1052
|
+
35: $V8,
|
|
1053
|
+
40: $V9,
|
|
1054
|
+
49: $Va,
|
|
1020
1055
|
},
|
|
1021
1056
|
{
|
|
1022
|
-
6:
|
|
1057
|
+
6: 82,
|
|
1023
1058
|
10: $V0,
|
|
1024
1059
|
11: $V1,
|
|
1025
1060
|
12: $V2,
|
|
1026
1061
|
13: $V3,
|
|
1027
1062
|
14: $V4,
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1063
|
+
15: $V5,
|
|
1064
|
+
17: $V6,
|
|
1065
|
+
24: $V7,
|
|
1066
|
+
27: 12,
|
|
1067
|
+
35: $V8,
|
|
1068
|
+
40: $V9,
|
|
1069
|
+
49: $Va,
|
|
1034
1070
|
},
|
|
1035
|
-
{ 9: $
|
|
1036
|
-
{ 9: $
|
|
1037
|
-
o($
|
|
1071
|
+
{ 9: $VE, 36: [1, 83] },
|
|
1072
|
+
{ 9: $VE, 36: [1, 84] },
|
|
1073
|
+
o($Vx, [2, 36]),
|
|
1038
1074
|
{
|
|
1039
|
-
6:
|
|
1075
|
+
6: 85,
|
|
1040
1076
|
10: $V0,
|
|
1041
1077
|
11: $V1,
|
|
1042
1078
|
12: $V2,
|
|
1043
1079
|
13: $V3,
|
|
1044
1080
|
14: $V4,
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1081
|
+
15: $V5,
|
|
1082
|
+
17: $V6,
|
|
1083
|
+
24: $V7,
|
|
1084
|
+
27: 12,
|
|
1085
|
+
35: $V8,
|
|
1086
|
+
40: $V9,
|
|
1087
|
+
49: $Va,
|
|
1051
1088
|
},
|
|
1052
|
-
{
|
|
1089
|
+
{ 50: [1, 86] },
|
|
1053
1090
|
{
|
|
1054
|
-
6:
|
|
1091
|
+
6: 87,
|
|
1055
1092
|
10: $V0,
|
|
1056
1093
|
11: $V1,
|
|
1057
1094
|
12: $V2,
|
|
1058
1095
|
13: $V3,
|
|
1059
1096
|
14: $V4,
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1097
|
+
15: $V5,
|
|
1098
|
+
17: $V6,
|
|
1099
|
+
24: $V7,
|
|
1100
|
+
27: 12,
|
|
1101
|
+
35: $V8,
|
|
1102
|
+
40: $V9,
|
|
1103
|
+
49: $Va,
|
|
1066
1104
|
},
|
|
1067
1105
|
{
|
|
1068
|
-
6:
|
|
1106
|
+
6: 88,
|
|
1069
1107
|
10: $V0,
|
|
1070
1108
|
11: $V1,
|
|
1071
1109
|
12: $V2,
|
|
1072
1110
|
13: $V3,
|
|
1073
1111
|
14: $V4,
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1112
|
+
15: $V5,
|
|
1113
|
+
17: $V6,
|
|
1114
|
+
24: $V7,
|
|
1115
|
+
27: 12,
|
|
1116
|
+
35: $V8,
|
|
1117
|
+
40: $V9,
|
|
1118
|
+
49: $Va,
|
|
1080
1119
|
},
|
|
1081
1120
|
{
|
|
1082
|
-
15: $Vb,
|
|
1083
1121
|
16: $Vc,
|
|
1084
1122
|
17: $Vd,
|
|
1085
1123
|
18: $Ve,
|
|
@@ -1087,23 +1125,23 @@ var parser = (function () {
|
|
|
1087
1125
|
20: $Vg,
|
|
1088
1126
|
21: $Vh,
|
|
1089
1127
|
22: $Vi,
|
|
1090
|
-
|
|
1091
|
-
|
|
1128
|
+
23: $Vj,
|
|
1129
|
+
25: $Vk,
|
|
1092
1130
|
28: $Vl,
|
|
1093
1131
|
29: $Vm,
|
|
1094
1132
|
30: $Vn,
|
|
1095
1133
|
31: $Vo,
|
|
1096
1134
|
32: $Vp,
|
|
1097
1135
|
33: $Vq,
|
|
1098
|
-
|
|
1136
|
+
34: $Vr,
|
|
1099
1137
|
37: $Vs,
|
|
1100
1138
|
38: $Vt,
|
|
1101
|
-
|
|
1139
|
+
39: $Vu,
|
|
1102
1140
|
41: $Vv,
|
|
1103
|
-
|
|
1141
|
+
42: $Vw,
|
|
1142
|
+
46: [1, 89],
|
|
1104
1143
|
},
|
|
1105
|
-
o([4, 7, 9,
|
|
1106
|
-
15: $Vb,
|
|
1144
|
+
o([4, 7, 9, 26, 36, 45, 46, 48, 50], [2, 24], {
|
|
1107
1145
|
16: $Vc,
|
|
1108
1146
|
17: $Vd,
|
|
1109
1147
|
18: $Ve,
|
|
@@ -1111,24 +1149,24 @@ var parser = (function () {
|
|
|
1111
1149
|
20: $Vg,
|
|
1112
1150
|
21: $Vh,
|
|
1113
1151
|
22: $Vi,
|
|
1114
|
-
|
|
1115
|
-
|
|
1152
|
+
23: $Vj,
|
|
1153
|
+
25: $Vk,
|
|
1116
1154
|
28: $Vl,
|
|
1117
1155
|
29: $Vm,
|
|
1118
1156
|
30: $Vn,
|
|
1119
1157
|
31: $Vo,
|
|
1120
1158
|
32: $Vp,
|
|
1121
1159
|
33: $Vq,
|
|
1122
|
-
|
|
1160
|
+
34: $Vr,
|
|
1123
1161
|
37: $Vs,
|
|
1124
1162
|
38: $Vt,
|
|
1125
|
-
|
|
1163
|
+
39: $Vu,
|
|
1126
1164
|
41: $Vv,
|
|
1165
|
+
42: $Vw,
|
|
1127
1166
|
}),
|
|
1128
|
-
o($
|
|
1129
|
-
o($
|
|
1130
|
-
o($
|
|
1131
|
-
15: $Vb,
|
|
1167
|
+
o($Vx, [2, 32]),
|
|
1168
|
+
o($Vx, [2, 38]),
|
|
1169
|
+
o($Vy, [2, 8], {
|
|
1132
1170
|
16: $Vc,
|
|
1133
1171
|
17: $Vd,
|
|
1134
1172
|
18: $Ve,
|
|
@@ -1136,23 +1174,23 @@ var parser = (function () {
|
|
|
1136
1174
|
20: $Vg,
|
|
1137
1175
|
21: $Vh,
|
|
1138
1176
|
22: $Vi,
|
|
1139
|
-
|
|
1140
|
-
|
|
1177
|
+
23: $Vj,
|
|
1178
|
+
25: $Vk,
|
|
1141
1179
|
28: $Vl,
|
|
1142
1180
|
29: $Vm,
|
|
1143
1181
|
30: $Vn,
|
|
1144
1182
|
31: $Vo,
|
|
1145
1183
|
32: $Vp,
|
|
1146
1184
|
33: $Vq,
|
|
1147
|
-
|
|
1185
|
+
34: $Vr,
|
|
1148
1186
|
37: $Vs,
|
|
1149
1187
|
38: $Vt,
|
|
1150
|
-
|
|
1188
|
+
39: $Vu,
|
|
1151
1189
|
41: $Vv,
|
|
1190
|
+
42: $Vw,
|
|
1152
1191
|
}),
|
|
1153
|
-
o($
|
|
1192
|
+
o($Vx, [2, 47]),
|
|
1154
1193
|
{
|
|
1155
|
-
15: $Vb,
|
|
1156
1194
|
16: $Vc,
|
|
1157
1195
|
17: $Vd,
|
|
1158
1196
|
18: $Ve,
|
|
@@ -1160,23 +1198,23 @@ var parser = (function () {
|
|
|
1160
1198
|
20: $Vg,
|
|
1161
1199
|
21: $Vh,
|
|
1162
1200
|
22: $Vi,
|
|
1163
|
-
|
|
1164
|
-
|
|
1201
|
+
23: $Vj,
|
|
1202
|
+
25: $Vk,
|
|
1165
1203
|
28: $Vl,
|
|
1166
1204
|
29: $Vm,
|
|
1167
1205
|
30: $Vn,
|
|
1168
1206
|
31: $Vo,
|
|
1169
1207
|
32: $Vp,
|
|
1170
1208
|
33: $Vq,
|
|
1171
|
-
|
|
1209
|
+
34: $Vr,
|
|
1172
1210
|
37: $Vs,
|
|
1173
1211
|
38: $Vt,
|
|
1174
|
-
|
|
1212
|
+
39: $Vu,
|
|
1175
1213
|
41: $Vv,
|
|
1176
|
-
|
|
1214
|
+
42: $Vw,
|
|
1215
|
+
46: [1, 90],
|
|
1177
1216
|
},
|
|
1178
1217
|
{
|
|
1179
|
-
15: $Vb,
|
|
1180
1218
|
16: $Vc,
|
|
1181
1219
|
17: $Vd,
|
|
1182
1220
|
18: $Ve,
|
|
@@ -1184,51 +1222,53 @@ var parser = (function () {
|
|
|
1184
1222
|
20: $Vg,
|
|
1185
1223
|
21: $Vh,
|
|
1186
1224
|
22: $Vi,
|
|
1187
|
-
|
|
1188
|
-
|
|
1225
|
+
23: $Vj,
|
|
1226
|
+
25: $Vk,
|
|
1189
1227
|
28: $Vl,
|
|
1190
1228
|
29: $Vm,
|
|
1191
1229
|
30: $Vn,
|
|
1192
1230
|
31: $Vo,
|
|
1193
1231
|
32: $Vp,
|
|
1194
1232
|
33: $Vq,
|
|
1195
|
-
|
|
1233
|
+
34: $Vr,
|
|
1196
1234
|
37: $Vs,
|
|
1197
1235
|
38: $Vt,
|
|
1198
|
-
|
|
1236
|
+
39: $Vu,
|
|
1199
1237
|
41: $Vv,
|
|
1200
|
-
|
|
1238
|
+
42: $Vw,
|
|
1239
|
+
50: [2, 46],
|
|
1201
1240
|
},
|
|
1202
1241
|
{
|
|
1203
|
-
6:
|
|
1242
|
+
6: 91,
|
|
1204
1243
|
10: $V0,
|
|
1205
1244
|
11: $V1,
|
|
1206
1245
|
12: $V2,
|
|
1207
1246
|
13: $V3,
|
|
1208
1247
|
14: $V4,
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1248
|
+
15: $V5,
|
|
1249
|
+
17: $V6,
|
|
1250
|
+
24: $V7,
|
|
1251
|
+
27: 12,
|
|
1252
|
+
35: $V8,
|
|
1253
|
+
40: $V9,
|
|
1254
|
+
49: $Va,
|
|
1215
1255
|
},
|
|
1216
1256
|
{
|
|
1217
|
-
6:
|
|
1257
|
+
6: 92,
|
|
1218
1258
|
10: $V0,
|
|
1219
1259
|
11: $V1,
|
|
1220
1260
|
12: $V2,
|
|
1221
1261
|
13: $V3,
|
|
1222
1262
|
14: $V4,
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1263
|
+
15: $V5,
|
|
1264
|
+
17: $V6,
|
|
1265
|
+
24: $V7,
|
|
1266
|
+
27: 12,
|
|
1267
|
+
35: $V8,
|
|
1268
|
+
40: $V9,
|
|
1269
|
+
49: $Va,
|
|
1229
1270
|
},
|
|
1230
|
-
o($
|
|
1231
|
-
15: $Vb,
|
|
1271
|
+
o($VF, [2, 43], {
|
|
1232
1272
|
16: $Vc,
|
|
1233
1273
|
17: $Vd,
|
|
1234
1274
|
18: $Ve,
|
|
@@ -1236,22 +1276,22 @@ var parser = (function () {
|
|
|
1236
1276
|
20: $Vg,
|
|
1237
1277
|
21: $Vh,
|
|
1238
1278
|
22: $Vi,
|
|
1239
|
-
|
|
1240
|
-
|
|
1279
|
+
23: $Vj,
|
|
1280
|
+
25: $Vk,
|
|
1241
1281
|
28: $Vl,
|
|
1242
1282
|
29: $Vm,
|
|
1243
1283
|
30: $Vn,
|
|
1244
1284
|
31: $Vo,
|
|
1245
1285
|
32: $Vp,
|
|
1246
1286
|
33: $Vq,
|
|
1247
|
-
|
|
1287
|
+
34: $Vr,
|
|
1248
1288
|
37: $Vs,
|
|
1249
1289
|
38: $Vt,
|
|
1250
|
-
|
|
1290
|
+
39: $Vu,
|
|
1251
1291
|
41: $Vv,
|
|
1292
|
+
42: $Vw,
|
|
1252
1293
|
}),
|
|
1253
|
-
o($
|
|
1254
|
-
15: $Vb,
|
|
1294
|
+
o($VF, [2, 44], {
|
|
1255
1295
|
16: $Vc,
|
|
1256
1296
|
17: $Vd,
|
|
1257
1297
|
18: $Ve,
|
|
@@ -1259,22 +1299,23 @@ var parser = (function () {
|
|
|
1259
1299
|
20: $Vg,
|
|
1260
1300
|
21: $Vh,
|
|
1261
1301
|
22: $Vi,
|
|
1262
|
-
|
|
1263
|
-
|
|
1302
|
+
23: $Vj,
|
|
1303
|
+
25: $Vk,
|
|
1264
1304
|
28: $Vl,
|
|
1265
1305
|
29: $Vm,
|
|
1266
1306
|
30: $Vn,
|
|
1267
1307
|
31: $Vo,
|
|
1268
1308
|
32: $Vp,
|
|
1269
1309
|
33: $Vq,
|
|
1270
|
-
|
|
1310
|
+
34: $Vr,
|
|
1271
1311
|
37: $Vs,
|
|
1272
1312
|
38: $Vt,
|
|
1273
|
-
|
|
1313
|
+
39: $Vu,
|
|
1274
1314
|
41: $Vv,
|
|
1315
|
+
42: $Vw,
|
|
1275
1316
|
}),
|
|
1276
1317
|
],
|
|
1277
|
-
defaultActions: { 2: [2, 1],
|
|
1318
|
+
defaultActions: { 2: [2, 1], 17: [2, 2] },
|
|
1278
1319
|
parseError: function parseError(str, hash) {
|
|
1279
1320
|
if (hash.recoverable) {
|
|
1280
1321
|
this.trace(str);
|
|
@@ -1360,9 +1401,7 @@ var parser = (function () {
|
|
|
1360
1401
|
'Parse error on line ' +
|
|
1361
1402
|
(yylineno + 1) +
|
|
1362
1403
|
': Unexpected ' +
|
|
1363
|
-
(symbol == EOF
|
|
1364
|
-
? 'end of input'
|
|
1365
|
-
: "'" + (this.terminals_[symbol] || symbol) + "'");
|
|
1404
|
+
(symbol == EOF ? 'end of input' : "'" + (this.terminals_[symbol] || symbol) + "'");
|
|
1366
1405
|
}
|
|
1367
1406
|
this.parseError(errStr, {
|
|
1368
1407
|
text: lexer.match,
|
|
@@ -1373,10 +1412,7 @@ var parser = (function () {
|
|
|
1373
1412
|
});
|
|
1374
1413
|
}
|
|
1375
1414
|
if (action[0] instanceof Array && action.length > 1) {
|
|
1376
|
-
throw new Error('Parse Error: multiple actions possible at state: ' +
|
|
1377
|
-
state +
|
|
1378
|
-
', token: ' +
|
|
1379
|
-
symbol);
|
|
1415
|
+
throw new Error('Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol);
|
|
1380
1416
|
}
|
|
1381
1417
|
switch (action[0]) {
|
|
1382
1418
|
case 1:
|
|
@@ -1414,15 +1450,7 @@ var parser = (function () {
|
|
|
1414
1450
|
lstack[lstack.length - 1].range[1],
|
|
1415
1451
|
];
|
|
1416
1452
|
}
|
|
1417
|
-
r = this.performAction.apply(yyval, [
|
|
1418
|
-
yytext,
|
|
1419
|
-
yyleng,
|
|
1420
|
-
yylineno,
|
|
1421
|
-
sharedState.yy,
|
|
1422
|
-
action[1],
|
|
1423
|
-
vstack,
|
|
1424
|
-
lstack,
|
|
1425
|
-
].concat(args));
|
|
1453
|
+
r = this.performAction.apply(yyval, [yytext, yyleng, yylineno, sharedState.yy, action[1], vstack, lstack].concat(args));
|
|
1426
1454
|
if (typeof r !== 'undefined') {
|
|
1427
1455
|
return r;
|
|
1428
1456
|
}
|
|
@@ -1518,9 +1546,7 @@ var parser = (function () {
|
|
|
1518
1546
|
last_line: this.yylineno + 1,
|
|
1519
1547
|
first_column: this.yylloc.first_column,
|
|
1520
1548
|
last_column: lines
|
|
1521
|
-
? (lines.length === oldLines.length
|
|
1522
|
-
? this.yylloc.first_column
|
|
1523
|
-
: 0) +
|
|
1549
|
+
? (lines.length === oldLines.length ? this.yylloc.first_column : 0) +
|
|
1524
1550
|
oldLines[oldLines.length - lines.length].length -
|
|
1525
1551
|
lines[0].length
|
|
1526
1552
|
: this.yylloc.first_column - len,
|
|
@@ -1560,7 +1586,7 @@ var parser = (function () {
|
|
|
1560
1586
|
// displays already matched input, i.e. for error messages
|
|
1561
1587
|
pastInput: function () {
|
|
1562
1588
|
var past = this.matched.substr(0, this.matched.length - this.match.length);
|
|
1563
|
-
return (
|
|
1589
|
+
return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, '');
|
|
1564
1590
|
},
|
|
1565
1591
|
// displays upcoming input, i.e. for error messages
|
|
1566
1592
|
upcomingInput: function () {
|
|
@@ -1614,8 +1640,7 @@ var parser = (function () {
|
|
|
1614
1640
|
last_line: this.yylineno + 1,
|
|
1615
1641
|
first_column: this.yylloc.last_column,
|
|
1616
1642
|
last_column: lines
|
|
1617
|
-
? lines[lines.length - 1].length -
|
|
1618
|
-
lines[lines.length - 1].match(/\r?\n?/)[0].length
|
|
1643
|
+
? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length
|
|
1619
1644
|
: this.yylloc.last_column + match[0].length,
|
|
1620
1645
|
};
|
|
1621
1646
|
this.yytext += match[0];
|
|
@@ -1731,8 +1756,7 @@ var parser = (function () {
|
|
|
1731
1756
|
},
|
|
1732
1757
|
// produce the lexer rule set which is active for the currently active lexer condition state
|
|
1733
1758
|
_currentRules: function _currentRules() {
|
|
1734
|
-
if (this.conditionStack.length &&
|
|
1735
|
-
this.conditionStack[this.conditionStack.length - 1]) {
|
|
1759
|
+
if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) {
|
|
1736
1760
|
return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
|
|
1737
1761
|
}
|
|
1738
1762
|
else {
|
|
@@ -1781,94 +1805,94 @@ var parser = (function () {
|
|
|
1781
1805
|
return 13;
|
|
1782
1806
|
break;
|
|
1783
1807
|
case 4:
|
|
1784
|
-
return
|
|
1808
|
+
return 40;
|
|
1785
1809
|
break;
|
|
1786
1810
|
case 5:
|
|
1787
1811
|
return 14;
|
|
1788
1812
|
break;
|
|
1789
1813
|
case 6:
|
|
1790
|
-
return
|
|
1814
|
+
return 29;
|
|
1791
1815
|
break;
|
|
1792
1816
|
case 7:
|
|
1793
|
-
return
|
|
1817
|
+
return 33;
|
|
1794
1818
|
break;
|
|
1795
1819
|
case 8:
|
|
1796
|
-
return
|
|
1820
|
+
return 31;
|
|
1797
1821
|
break;
|
|
1798
1822
|
case 9:
|
|
1799
|
-
return
|
|
1823
|
+
return 28;
|
|
1800
1824
|
break;
|
|
1801
1825
|
case 10:
|
|
1802
|
-
return
|
|
1826
|
+
return 32;
|
|
1803
1827
|
break;
|
|
1804
1828
|
case 11:
|
|
1805
|
-
return
|
|
1829
|
+
return 30;
|
|
1806
1830
|
break;
|
|
1807
1831
|
case 12:
|
|
1808
|
-
return
|
|
1832
|
+
return 37;
|
|
1809
1833
|
break;
|
|
1810
1834
|
case 13:
|
|
1811
|
-
return
|
|
1835
|
+
return 38;
|
|
1812
1836
|
break;
|
|
1813
1837
|
case 14:
|
|
1814
|
-
return
|
|
1838
|
+
return 34;
|
|
1815
1839
|
break;
|
|
1816
1840
|
case 15:
|
|
1817
|
-
return
|
|
1841
|
+
return 39;
|
|
1818
1842
|
break;
|
|
1819
1843
|
case 16:
|
|
1820
|
-
return
|
|
1844
|
+
return 24;
|
|
1821
1845
|
break;
|
|
1822
1846
|
case 17:
|
|
1823
|
-
return
|
|
1847
|
+
return 23;
|
|
1824
1848
|
break;
|
|
1825
1849
|
case 18:
|
|
1826
|
-
return
|
|
1850
|
+
return 22;
|
|
1827
1851
|
break;
|
|
1828
1852
|
case 19:
|
|
1829
|
-
return
|
|
1853
|
+
return 42;
|
|
1830
1854
|
break;
|
|
1831
1855
|
case 20:
|
|
1832
|
-
return
|
|
1856
|
+
return 41;
|
|
1833
1857
|
break;
|
|
1834
1858
|
case 21:
|
|
1835
|
-
return
|
|
1859
|
+
return 49;
|
|
1836
1860
|
break;
|
|
1837
1861
|
case 22:
|
|
1838
|
-
return
|
|
1862
|
+
return 45;
|
|
1839
1863
|
break;
|
|
1840
1864
|
case 23:
|
|
1841
|
-
return
|
|
1865
|
+
return 46;
|
|
1842
1866
|
break;
|
|
1843
1867
|
case 24:
|
|
1844
|
-
return
|
|
1868
|
+
return 48;
|
|
1845
1869
|
break;
|
|
1846
1870
|
case 25:
|
|
1847
|
-
return
|
|
1871
|
+
return 50;
|
|
1848
1872
|
break;
|
|
1849
1873
|
case 26:
|
|
1850
|
-
return
|
|
1874
|
+
return 18;
|
|
1851
1875
|
break;
|
|
1852
1876
|
case 27:
|
|
1853
|
-
return
|
|
1877
|
+
return 19;
|
|
1854
1878
|
break;
|
|
1855
1879
|
case 28:
|
|
1856
|
-
return
|
|
1880
|
+
return 17;
|
|
1857
1881
|
break;
|
|
1858
1882
|
case 29:
|
|
1859
|
-
return
|
|
1883
|
+
return 16;
|
|
1860
1884
|
break;
|
|
1861
1885
|
case 30:
|
|
1862
|
-
return
|
|
1886
|
+
return 20;
|
|
1863
1887
|
break;
|
|
1864
1888
|
case 31:
|
|
1865
|
-
return
|
|
1889
|
+
return 21;
|
|
1866
1890
|
break;
|
|
1867
1891
|
case 32:
|
|
1868
|
-
return
|
|
1892
|
+
return 35;
|
|
1869
1893
|
break;
|
|
1870
1894
|
case 33:
|
|
1871
|
-
return
|
|
1895
|
+
return 36;
|
|
1872
1896
|
break;
|
|
1873
1897
|
case 34:
|
|
1874
1898
|
return '[';
|
|
@@ -1880,10 +1904,10 @@ var parser = (function () {
|
|
|
1880
1904
|
return 9;
|
|
1881
1905
|
break;
|
|
1882
1906
|
case 37:
|
|
1883
|
-
return
|
|
1907
|
+
return 25;
|
|
1884
1908
|
break;
|
|
1885
1909
|
case 38:
|
|
1886
|
-
return
|
|
1910
|
+
return 26;
|
|
1887
1911
|
break;
|
|
1888
1912
|
case 39:
|
|
1889
1913
|
return 10;
|
|
@@ -1947,9 +1971,8 @@ var parser = (function () {
|
|
|
1947
1971
|
conditions: {
|
|
1948
1972
|
INITIAL: {
|
|
1949
1973
|
rules: [
|
|
1950
|
-
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
|
1951
|
-
|
|
1952
|
-
36, 37, 38, 39, 40, 41, 42,
|
|
1974
|
+
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
|
1975
|
+
24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
|
1953
1976
|
],
|
|
1954
1977
|
inclusive: true,
|
|
1955
1978
|
},
|