intelligent-system-design-language 0.3.28 → 0.3.34
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/.claude/commands/discord-sweep.md +95 -0
- package/.claude/commands/release-notes.md +86 -0
- package/.claude/commands/support-reply.md +61 -0
- package/.claude/commands/wiki-sync.md +90 -0
- package/.claude/feedback-sweep.json +12 -0
- package/.claude/settings.json +14 -0
- package/.codegraph/daemon.pid +6 -0
- package/.mcp.json +12 -0
- package/out/_isdlStyles.scss +2 -1
- package/out/cli/components/_isdlStyles.scss +2 -1
- package/out/cli/components/derived-data-generator.js +5 -2
- package/out/cli/components/derived-data-generator.js.map +1 -1
- package/out/cli/components/method-generator.js +67 -20
- package/out/cli/components/method-generator.js.map +1 -1
- package/out/cli/components/utils.js +5 -3
- package/out/cli/components/utils.js.map +1 -1
- package/out/cli/components/vue/base-components/vue-attribute.js +1 -1
- package/out/cli/components/vue/base-components/vue-resource.js +3 -2
- package/out/cli/components/vue/base-components/vue-resource.js.map +1 -1
- package/out/cli/components/vue/base-components/vue-tracker.js +10 -4
- package/out/cli/components/vue/base-components/vue-tracker.js.map +1 -1
- package/out/cli/components/vue/vue-datatable2-component-generator.js +185 -24
- package/out/cli/components/vue/vue-datatable2-component-generator.js.map +1 -1
- package/out/cli/components/vue/vue-generator.js +45 -4
- package/out/cli/components/vue/vue-generator.js.map +1 -1
- package/out/cli/components/vue/vue-sheet-application-generator.js +196 -43
- package/out/cli/components/vue/vue-sheet-application-generator.js.map +1 -1
- package/out/cli/components/vue/vue-sheet-class-generator.js +4 -5
- package/out/cli/components/vue/vue-sheet-class-generator.js.map +1 -1
- package/out/extension/main.cjs +1627 -898
- package/out/extension/main.cjs.map +3 -3
- package/out/extension/package.json +1 -1
- package/out/language/generated/ast.js +132 -12
- package/out/language/generated/ast.js.map +1 -1
- package/out/language/generated/grammar.js +1460 -876
- package/out/language/generated/grammar.js.map +1 -1
- package/out/language/intelligent-system-design-language-formatter.js +4 -1
- package/out/language/intelligent-system-design-language-formatter.js.map +1 -1
- package/out/language/intelligent-system-design-language-validator.js +43 -5
- package/out/language/intelligent-system-design-language-validator.js.map +1 -1
- package/out/language/isdl-document-validator.js +3 -3
- package/out/language/isdl-document-validator.js.map +1 -1
- package/out/language/isdl-scope-provider.js +6 -4
- package/out/language/isdl-scope-provider.js.map +1 -1
- package/out/language/main.cjs +1629 -900
- package/out/language/main.cjs.map +3 -3
- package/out/package.json +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "ISDL - Intelligent System Design Language",
|
|
4
4
|
"description": "Intelligent System Design Language support for Visual Studio Code",
|
|
5
5
|
"publisher": "IronMooseDevelopment",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.34",
|
|
7
7
|
"author": "Iron Moose Development",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -337,6 +337,14 @@ export const ChoiceStringValue = 'ChoiceStringValue';
|
|
|
337
337
|
export function isChoiceStringValue(item) {
|
|
338
338
|
return reflection.isInstance(item, ChoiceStringValue);
|
|
339
339
|
}
|
|
340
|
+
export const CollapsedParam = 'CollapsedParam';
|
|
341
|
+
export function isCollapsedParam(item) {
|
|
342
|
+
return reflection.isInstance(item, CollapsedParam);
|
|
343
|
+
}
|
|
344
|
+
export const CollapsibleParam = 'CollapsibleParam';
|
|
345
|
+
export function isCollapsibleParam(item) {
|
|
346
|
+
return reflection.isInstance(item, CollapsibleParam);
|
|
347
|
+
}
|
|
340
348
|
export const ColorParam = 'ColorParam';
|
|
341
349
|
export function isColorParam(item) {
|
|
342
350
|
return reflection.isInstance(item, ColorParam);
|
|
@@ -465,6 +473,10 @@ export const ElseIf = 'ElseIf';
|
|
|
465
473
|
export function isElseIf(item) {
|
|
466
474
|
return reflection.isInstance(item, ElseIf);
|
|
467
475
|
}
|
|
476
|
+
export const EmptyColorParam = 'EmptyColorParam';
|
|
477
|
+
export function isEmptyColorParam(item) {
|
|
478
|
+
return reflection.isInstance(item, EmptyColorParam);
|
|
479
|
+
}
|
|
468
480
|
export const Entry = 'Entry';
|
|
469
481
|
export function isEntry(item) {
|
|
470
482
|
return reflection.isInstance(item, Entry);
|
|
@@ -753,6 +765,10 @@ export const ParentExpressionAssignment = 'ParentExpressionAssignment';
|
|
|
753
765
|
export function isParentExpressionAssignment(item) {
|
|
754
766
|
return reflection.isInstance(item, ParentExpressionAssignment);
|
|
755
767
|
}
|
|
768
|
+
export const ParentFunctionCall = 'ParentFunctionCall';
|
|
769
|
+
export function isParentFunctionCall(item) {
|
|
770
|
+
return reflection.isInstance(item, ParentFunctionCall);
|
|
771
|
+
}
|
|
756
772
|
export const ParentIncrementDecrementAssignment = 'ParentIncrementDecrementAssignment';
|
|
757
773
|
export function isParentIncrementDecrementAssignment(item) {
|
|
758
774
|
return reflection.isInstance(item, ParentIncrementDecrementAssignment);
|
|
@@ -965,6 +981,14 @@ export const SummaryParam = 'SummaryParam';
|
|
|
965
981
|
export function isSummaryParam(item) {
|
|
966
982
|
return reflection.isInstance(item, SummaryParam);
|
|
967
983
|
}
|
|
984
|
+
export const SwitchCase = 'SwitchCase';
|
|
985
|
+
export function isSwitchCase(item) {
|
|
986
|
+
return reflection.isInstance(item, SwitchCase);
|
|
987
|
+
}
|
|
988
|
+
export const SwitchStatement = 'SwitchStatement';
|
|
989
|
+
export function isSwitchStatement(item) {
|
|
990
|
+
return reflection.isInstance(item, SwitchStatement);
|
|
991
|
+
}
|
|
968
992
|
export const SystemSettingAccess = 'SystemSettingAccess';
|
|
969
993
|
export function isSystemSettingAccess(item) {
|
|
970
994
|
return reflection.isInstance(item, SystemSettingAccess);
|
|
@@ -1021,6 +1045,10 @@ export const TargetTypeCheckExpression = 'TargetTypeCheckExpression';
|
|
|
1021
1045
|
export function isTargetTypeCheckExpression(item) {
|
|
1022
1046
|
return reflection.isInstance(item, TargetTypeCheckExpression);
|
|
1023
1047
|
}
|
|
1048
|
+
export const TernaryExp = 'TernaryExp';
|
|
1049
|
+
export function isTernaryExp(item) {
|
|
1050
|
+
return reflection.isInstance(item, TernaryExp);
|
|
1051
|
+
}
|
|
1024
1052
|
export const Theme = 'Theme';
|
|
1025
1053
|
export function isTheme(item) {
|
|
1026
1054
|
return reflection.isInstance(item, Theme);
|
|
@@ -1041,6 +1069,10 @@ export const ThemeDisabledGroup = 'ThemeDisabledGroup';
|
|
|
1041
1069
|
export function isThemeDisabledGroup(item) {
|
|
1042
1070
|
return reflection.isInstance(item, ThemeDisabledGroup);
|
|
1043
1071
|
}
|
|
1072
|
+
export const ThemeElevationParam = 'ThemeElevationParam';
|
|
1073
|
+
export function isThemeElevationParam(item) {
|
|
1074
|
+
return reflection.isInstance(item, ThemeElevationParam);
|
|
1075
|
+
}
|
|
1044
1076
|
export const ThemeFamilyProp = 'ThemeFamilyProp';
|
|
1045
1077
|
export function isThemeFamilyProp(item) {
|
|
1046
1078
|
return reflection.isInstance(item, ThemeFamilyProp);
|
|
@@ -1177,6 +1209,10 @@ export const WidthParam = 'WidthParam';
|
|
|
1177
1209
|
export function isWidthParam(item) {
|
|
1178
1210
|
return reflection.isInstance(item, WidthParam);
|
|
1179
1211
|
}
|
|
1212
|
+
export const ZoomParam = 'ZoomParam';
|
|
1213
|
+
export function isZoomParam(item) {
|
|
1214
|
+
return reflection.isInstance(item, ZoomParam);
|
|
1215
|
+
}
|
|
1180
1216
|
export const Access = 'Access';
|
|
1181
1217
|
export function isAccess(item) {
|
|
1182
1218
|
return reflection.isInstance(item, Access);
|
|
@@ -1195,7 +1231,7 @@ export function isTargetAccess(item) {
|
|
|
1195
1231
|
}
|
|
1196
1232
|
export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstReflection {
|
|
1197
1233
|
getAllTypes() {
|
|
1198
|
-
return ['Access', 'Action', 'ActionParam', 'Actor', 'ArrayExpression', 'Assignment', 'AttributeExp', 'AttributeFunctionParam', 'AttributeParamMod', 'AttributeParameter', 'AttributeRollParam', 'AttributeStyleParam', 'BackgroundParam', 'BasicFields', 'BinaryExpression', 'BooleanExp', 'BooleanParamValue', 'BooleanParameter', 'BooleanSetting', 'ChatBlock', 'ChatBlockExpression', 'ChatCard', 'ChoiceCustomProperty', 'ChoiceProperty', 'ChoiceStringValue', 'ClassExpression', 'ColorParam', 'Column', 'Combat', 'CombatMethods', 'CombatProperty', 'ComparisonExpression', 'ComplexFields', 'Config', 'ConfigExpression', 'ConfigFlag', 'CritParam', 'DamageBonusesField', 'DamageResistancesField', 'DamageRoll', 'DamageRollParam', 'DamageTrackExp', 'DamageTrackParams', 'DamageTrackTypesParam', 'DamageTypeChoiceField', 'DateExp', 'DateTimeExp', 'DateTimeFields', 'DiceField', 'DiceFields', 'DieChoicesParam', 'DieField', 'DieInitialParam', 'DieNoneParam', 'DieParams', 'DieValueParam', 'Document', 'DocumentChoiceExp', 'DocumentChoiceParms', 'DocumentChoicesExp', 'DocumentCreatableParam', 'DocumentDefaultParam', 'DocumentDescriptionParam', 'DocumentFields', 'DocumentParam', 'DocumentSvgParam', 'Each', 'EachAccess', 'ElseIf', 'Entry', 'Expr', 'Expression', 'ExpressionAssignment', 'FailureParam', 'FleetingAccess', 'FumbleParam', 'FunctionCall', 'FunctionDefinition', 'FunctionParam', 'GlobalParam', 'Group', 'HeightParam', 'HideLabelParam', 'HookHandler', 'HtmlExp', 'IconParam', 'IfStatement', 'ImageField', 'ImageFieldParam', 'ImageInitialParam', 'ImageParam', 'ImagePrimaryParam', 'IncrementDecrementAssignment', 'InitiativeProperty', 'InventoryColumnsParam', 'InventoryEmptySlotsParam', 'InventoryField', 'InventoryMoneyParam', 'InventoryParams', 'InventoryQuantityParam', 'InventoryRowsParam', 'InventorySlotSizeParam', 'InventorySlotsParam', 'InventorySortParam', 'InventorySumMaxParam', 'InventorySumMaxValues', 'InventorySumParam', 'InventorySumProperties', 'InventorySummaryParam', 'Item', 'ItemAccess', 'JS', 'Keyword', 'KeywordParam', 'Keywords', 'LabelParam', 'Layout', 'Literal', 'LocationParam', 'LogExpression', 'MacroExecute', 'MacroField', 'MathEmptyExpression', 'MathExpression', 'MathParamExpression', 'MathSingleExpression', 'MeasuredTemplateField', 'MethodBlock', 'MethodBlockExpression', 'MethodContainer', 'MethodParam', 'MoneyDenomination', 'MoneyDenominationParam', 'MoneyDenominationValueParam', 'MoneyDisplayParam', 'MoneyField', 'MoneyFormatParam', 'MoneyParameter', 'MoneyPrecisionParam', 'NegExpression', 'NumberExp', 'NumberFieldParams', 'NumberParamCalculator', 'NumberParamInitial', 'NumberParamMax', 'NumberParamMin', 'NumberParamValue', 'NumberParameter', 'NumberRange', 'NumberSetting', 'Page', 'PaperDollDocumentReference', 'PaperDollElement', 'PaperDollExp', 'PaperDollParameter', 'Parameter', 'ParentAccess', 'ParentAssignment', 'ParentExpressionAssignment', 'ParentIncrementDecrementAssignment', 'ParentPropertyRefChoice', 'ParentPropertyRefChoiceParam', 'ParentPropertyRefExp', 'ParentPropertyRefParams', 'ParentQuickModifyAssignment', 'ParentTypeCheckExpression', 'PinnedField', 'PlayAudio', 'PlayAudioFile', 'PlayAudioParams', 'PlayAudioVolume', 'PrimitiveExpression', 'Prompt', 'PromptInputAccess', 'PromptParams', 'Property', 'QuickModifyAssignment', 'Ref', 'ReferenceFields', 'ResourceExp', 'ResourceParameter', 'ReturnExpression', 'Roll', 'RollParam', 'RollParameter', 'RollPredicateArg', 'RollResultAccess', 'RollVisualizerField', 'RollVisualizerParameter', 'RollVisualizerValueParam', 'Row', 'Section', 'SegmentsParameter', 'SelfMethod', 'SelfPropertyRefChoice', 'SelfPropertyRefChoiceParam', 'SelfPropertyRefExp', 'SelfPropertyRefParams', 'SettingChoices', 'SettingField', 'SettingHint', 'SettingInitial', 'SettingParam', 'SettingScope', 'Settings', 'ShorthandComparisonExpression', 'SingleDocumentExp', 'SizeParam', 'StandardFieldParams', 'StatusParamWhen', 'StatusProperty', 'StatusPropertyParameter', 'StringChoice', 'StringChoiceField', 'StringChoiceSetting', 'StringChoicesField', 'StringChoicesParamChoices', 'StringChoicesParamInitial', 'StringChoicesParamMax', 'StringChoicesParameter', 'StringExp', 'StringExtendedChoice', 'StringParamChoices', 'StringParamValue', 'StringParameter', 'StringSetting', 'SuccessParam', 'SummaryParam', 'SystemSettingAccess', 'SystemSettingAssignment', 'TableField', 'TableFieldsParam', 'TableImageActionParam', 'TableImageParam', 'TableParams', 'TablePinnableParam', 'TableSearchableParam', 'TableSortableParam', 'TargetAccess', 'TargetAssignment', 'TargetExpressionAssignment', 'TargetIncrementDecrementAssignment', 'TargetParam', 'TargetQuickModifyAssignment', 'TargetTypeCheckExpression', 'Theme', 'ThemeBackgroundParam', 'ThemeBodyParam', 'ThemeBorderGroup', 'ThemeColorProp', 'ThemeDisabledGroup', 'ThemeFamilyProp', 'ThemeFieldParam', 'ThemeFontFaceProp', 'ThemeFontGroup', 'ThemeHeadingGroup', 'ThemeHeightGroup', 'ThemeMaxProp', 'ThemeMinProp', 'ThemePaletteParam', 'ThemePrimaryParam', 'ThemeRadiusProp', 'ThemeSecondaryParam', 'ThemeSizeProp', 'ThemeTertiaryParam', 'ThemeTextParam', 'ThemeTransformProp', 'ThemeWidthGroup', 'ThemeWidthProp', 'TimeExp', 'TimeLimitParam', 'TrackerExp', 'TrackerParameter', 'TrackerStyleParameter', 'TypeParam', 'Update', 'UpdateParent', 'UpdateSelf', 'User', 'UserProperty', 'VariableAccess', 'VariableAssignment', 'VariableExpression', 'VariableExpressionAssignment', 'VariableIncrementDecrementAssignment', 'VariableQuickModifyAssignment', 'VisibilityParam', 'VisibilityValue', 'Wait', 'WhenExpressions', 'WhereParam', 'WidthParam', 'WipFields'];
|
|
1234
|
+
return ['Access', 'Action', 'ActionParam', 'Actor', 'ArrayExpression', 'Assignment', 'AttributeExp', 'AttributeFunctionParam', 'AttributeParamMod', 'AttributeParameter', 'AttributeRollParam', 'AttributeStyleParam', 'BackgroundParam', 'BasicFields', 'BinaryExpression', 'BooleanExp', 'BooleanParamValue', 'BooleanParameter', 'BooleanSetting', 'ChatBlock', 'ChatBlockExpression', 'ChatCard', 'ChoiceCustomProperty', 'ChoiceProperty', 'ChoiceStringValue', 'ClassExpression', 'CollapsedParam', 'CollapsibleParam', 'ColorParam', 'Column', 'Combat', 'CombatMethods', 'CombatProperty', 'ComparisonExpression', 'ComplexFields', 'Config', 'ConfigExpression', 'ConfigFlag', 'CritParam', 'DamageBonusesField', 'DamageResistancesField', 'DamageRoll', 'DamageRollParam', 'DamageTrackExp', 'DamageTrackParams', 'DamageTrackTypesParam', 'DamageTypeChoiceField', 'DateExp', 'DateTimeExp', 'DateTimeFields', 'DiceField', 'DiceFields', 'DieChoicesParam', 'DieField', 'DieInitialParam', 'DieNoneParam', 'DieParams', 'DieValueParam', 'Document', 'DocumentChoiceExp', 'DocumentChoiceParms', 'DocumentChoicesExp', 'DocumentCreatableParam', 'DocumentDefaultParam', 'DocumentDescriptionParam', 'DocumentFields', 'DocumentParam', 'DocumentSvgParam', 'Each', 'EachAccess', 'ElseIf', 'EmptyColorParam', 'Entry', 'Expr', 'Expression', 'ExpressionAssignment', 'FailureParam', 'FleetingAccess', 'FumbleParam', 'FunctionCall', 'FunctionDefinition', 'FunctionParam', 'GlobalParam', 'Group', 'HeightParam', 'HideLabelParam', 'HookHandler', 'HtmlExp', 'IconParam', 'IfStatement', 'ImageField', 'ImageFieldParam', 'ImageInitialParam', 'ImageParam', 'ImagePrimaryParam', 'IncrementDecrementAssignment', 'InitiativeProperty', 'InventoryColumnsParam', 'InventoryEmptySlotsParam', 'InventoryField', 'InventoryMoneyParam', 'InventoryParams', 'InventoryQuantityParam', 'InventoryRowsParam', 'InventorySlotSizeParam', 'InventorySlotsParam', 'InventorySortParam', 'InventorySumMaxParam', 'InventorySumMaxValues', 'InventorySumParam', 'InventorySumProperties', 'InventorySummaryParam', 'Item', 'ItemAccess', 'JS', 'Keyword', 'KeywordParam', 'Keywords', 'LabelParam', 'Layout', 'Literal', 'LocationParam', 'LogExpression', 'MacroExecute', 'MacroField', 'MathEmptyExpression', 'MathExpression', 'MathParamExpression', 'MathSingleExpression', 'MeasuredTemplateField', 'MethodBlock', 'MethodBlockExpression', 'MethodContainer', 'MethodParam', 'MoneyDenomination', 'MoneyDenominationParam', 'MoneyDenominationValueParam', 'MoneyDisplayParam', 'MoneyField', 'MoneyFormatParam', 'MoneyParameter', 'MoneyPrecisionParam', 'NegExpression', 'NumberExp', 'NumberFieldParams', 'NumberParamCalculator', 'NumberParamInitial', 'NumberParamMax', 'NumberParamMin', 'NumberParamValue', 'NumberParameter', 'NumberRange', 'NumberSetting', 'Page', 'PaperDollDocumentReference', 'PaperDollElement', 'PaperDollExp', 'PaperDollParameter', 'Parameter', 'ParentAccess', 'ParentAssignment', 'ParentExpressionAssignment', 'ParentFunctionCall', 'ParentIncrementDecrementAssignment', 'ParentPropertyRefChoice', 'ParentPropertyRefChoiceParam', 'ParentPropertyRefExp', 'ParentPropertyRefParams', 'ParentQuickModifyAssignment', 'ParentTypeCheckExpression', 'PinnedField', 'PlayAudio', 'PlayAudioFile', 'PlayAudioParams', 'PlayAudioVolume', 'PrimitiveExpression', 'Prompt', 'PromptInputAccess', 'PromptParams', 'Property', 'QuickModifyAssignment', 'Ref', 'ReferenceFields', 'ResourceExp', 'ResourceParameter', 'ReturnExpression', 'Roll', 'RollParam', 'RollParameter', 'RollPredicateArg', 'RollResultAccess', 'RollVisualizerField', 'RollVisualizerParameter', 'RollVisualizerValueParam', 'Row', 'Section', 'SegmentsParameter', 'SelfMethod', 'SelfPropertyRefChoice', 'SelfPropertyRefChoiceParam', 'SelfPropertyRefExp', 'SelfPropertyRefParams', 'SettingChoices', 'SettingField', 'SettingHint', 'SettingInitial', 'SettingParam', 'SettingScope', 'Settings', 'ShorthandComparisonExpression', 'SingleDocumentExp', 'SizeParam', 'StandardFieldParams', 'StatusParamWhen', 'StatusProperty', 'StatusPropertyParameter', 'StringChoice', 'StringChoiceField', 'StringChoiceSetting', 'StringChoicesField', 'StringChoicesParamChoices', 'StringChoicesParamInitial', 'StringChoicesParamMax', 'StringChoicesParameter', 'StringExp', 'StringExtendedChoice', 'StringParamChoices', 'StringParamValue', 'StringParameter', 'StringSetting', 'SuccessParam', 'SummaryParam', 'SwitchCase', 'SwitchStatement', 'SystemSettingAccess', 'SystemSettingAssignment', 'TableField', 'TableFieldsParam', 'TableImageActionParam', 'TableImageParam', 'TableParams', 'TablePinnableParam', 'TableSearchableParam', 'TableSortableParam', 'TargetAccess', 'TargetAssignment', 'TargetExpressionAssignment', 'TargetIncrementDecrementAssignment', 'TargetParam', 'TargetQuickModifyAssignment', 'TargetTypeCheckExpression', 'TernaryExp', 'Theme', 'ThemeBackgroundParam', 'ThemeBodyParam', 'ThemeBorderGroup', 'ThemeColorProp', 'ThemeDisabledGroup', 'ThemeElevationParam', 'ThemeFamilyProp', 'ThemeFieldParam', 'ThemeFontFaceProp', 'ThemeFontGroup', 'ThemeHeadingGroup', 'ThemeHeightGroup', 'ThemeMaxProp', 'ThemeMinProp', 'ThemePaletteParam', 'ThemePrimaryParam', 'ThemeRadiusProp', 'ThemeSecondaryParam', 'ThemeSizeProp', 'ThemeTertiaryParam', 'ThemeTextParam', 'ThemeTransformProp', 'ThemeWidthGroup', 'ThemeWidthProp', 'TimeExp', 'TimeLimitParam', 'TrackerExp', 'TrackerParameter', 'TrackerStyleParameter', 'TypeParam', 'Update', 'UpdateParent', 'UpdateSelf', 'User', 'UserProperty', 'VariableAccess', 'VariableAssignment', 'VariableExpression', 'VariableExpressionAssignment', 'VariableIncrementDecrementAssignment', 'VariableQuickModifyAssignment', 'VisibilityParam', 'VisibilityValue', 'Wait', 'WhenExpressions', 'WhereParam', 'WidthParam', 'WipFields', 'ZoomParam'];
|
|
1199
1235
|
}
|
|
1200
1236
|
computeIsSubtype(subtype, supertype) {
|
|
1201
1237
|
switch (subtype) {
|
|
@@ -1241,6 +1277,7 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1241
1277
|
case PlayAudio:
|
|
1242
1278
|
case ReturnExpression:
|
|
1243
1279
|
case SelfMethod:
|
|
1280
|
+
case SwitchStatement:
|
|
1244
1281
|
case SystemSettingAssignment:
|
|
1245
1282
|
case TargetAssignment:
|
|
1246
1283
|
case Update:
|
|
@@ -1270,7 +1307,8 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1270
1307
|
case BackgroundParam:
|
|
1271
1308
|
case DocumentCreatableParam:
|
|
1272
1309
|
case DocumentDefaultParam:
|
|
1273
|
-
case DocumentDescriptionParam:
|
|
1310
|
+
case DocumentDescriptionParam:
|
|
1311
|
+
case ZoomParam: {
|
|
1274
1312
|
return this.isSubtype(DocumentParam, supertype);
|
|
1275
1313
|
}
|
|
1276
1314
|
case BasicFields:
|
|
@@ -1369,7 +1407,13 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1369
1407
|
case DocumentSvgParam: {
|
|
1370
1408
|
return this.isSubtype(DocumentParam, supertype) || this.isSubtype(StatusPropertyParameter, supertype);
|
|
1371
1409
|
}
|
|
1372
|
-
case
|
|
1410
|
+
case EmptyColorParam:
|
|
1411
|
+
case SegmentsParameter:
|
|
1412
|
+
case TrackerStyleParameter: {
|
|
1413
|
+
return this.isSubtype(ResourceParameter, supertype) || this.isSubtype(TrackerParameter, supertype);
|
|
1414
|
+
}
|
|
1415
|
+
case Expr:
|
|
1416
|
+
case TernaryExp: {
|
|
1373
1417
|
return this.isSubtype(Expression, supertype);
|
|
1374
1418
|
}
|
|
1375
1419
|
case Expression: {
|
|
@@ -1381,7 +1425,8 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1381
1425
|
return this.isSubtype(Assignment, supertype);
|
|
1382
1426
|
}
|
|
1383
1427
|
case FunctionCall:
|
|
1384
|
-
case JS:
|
|
1428
|
+
case JS:
|
|
1429
|
+
case ParentFunctionCall: {
|
|
1385
1430
|
return this.isSubtype(MethodBlockExpression, supertype) || this.isSubtype(PrimitiveExpression, supertype);
|
|
1386
1431
|
}
|
|
1387
1432
|
case GlobalParam: {
|
|
@@ -1491,10 +1536,6 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1491
1536
|
case RollVisualizerValueParam: {
|
|
1492
1537
|
return this.isSubtype(RollVisualizerParameter, supertype);
|
|
1493
1538
|
}
|
|
1494
|
-
case SegmentsParameter:
|
|
1495
|
-
case TrackerStyleParameter: {
|
|
1496
|
-
return this.isSubtype(ResourceParameter, supertype) || this.isSubtype(TrackerParameter, supertype);
|
|
1497
|
-
}
|
|
1498
1539
|
case SelfPropertyRefChoiceParam: {
|
|
1499
1540
|
return this.isSubtype(SelfPropertyRefParams, supertype);
|
|
1500
1541
|
}
|
|
@@ -1543,6 +1584,7 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1543
1584
|
}
|
|
1544
1585
|
case ThemeBorderGroup:
|
|
1545
1586
|
case ThemeDisabledGroup:
|
|
1587
|
+
case ThemeElevationParam:
|
|
1546
1588
|
case ThemeFontGroup:
|
|
1547
1589
|
case ThemeHeadingGroup:
|
|
1548
1590
|
case ThemeHeightGroup:
|
|
@@ -1615,12 +1657,12 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1615
1657
|
}
|
|
1616
1658
|
case 'DocumentChoiceExp:document':
|
|
1617
1659
|
case 'DocumentChoicesExp:document':
|
|
1618
|
-
case 'InventoryField:
|
|
1660
|
+
case 'InventoryField:documents':
|
|
1619
1661
|
case 'PaperDollDocumentReference:document':
|
|
1620
1662
|
case 'ParentPropertyRefChoice:document':
|
|
1621
1663
|
case 'ParentTypeCheckExpression:document':
|
|
1622
1664
|
case 'SingleDocumentExp:document':
|
|
1623
|
-
case 'TableField:
|
|
1665
|
+
case 'TableField:documents':
|
|
1624
1666
|
case 'TargetTypeCheckExpression:document': {
|
|
1625
1667
|
return Document;
|
|
1626
1668
|
}
|
|
@@ -1819,6 +1861,22 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
1819
1861
|
]
|
|
1820
1862
|
};
|
|
1821
1863
|
}
|
|
1864
|
+
case 'CollapsedParam': {
|
|
1865
|
+
return {
|
|
1866
|
+
name: 'CollapsedParam',
|
|
1867
|
+
properties: [
|
|
1868
|
+
{ name: 'value', defaultValue: false }
|
|
1869
|
+
]
|
|
1870
|
+
};
|
|
1871
|
+
}
|
|
1872
|
+
case 'CollapsibleParam': {
|
|
1873
|
+
return {
|
|
1874
|
+
name: 'CollapsibleParam',
|
|
1875
|
+
properties: [
|
|
1876
|
+
{ name: 'value', defaultValue: false }
|
|
1877
|
+
]
|
|
1878
|
+
};
|
|
1879
|
+
}
|
|
1822
1880
|
case 'ColorParam': {
|
|
1823
1881
|
return {
|
|
1824
1882
|
name: 'ColorParam',
|
|
@@ -2107,6 +2165,14 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
2107
2165
|
]
|
|
2108
2166
|
};
|
|
2109
2167
|
}
|
|
2168
|
+
case 'EmptyColorParam': {
|
|
2169
|
+
return {
|
|
2170
|
+
name: 'EmptyColorParam',
|
|
2171
|
+
properties: [
|
|
2172
|
+
{ name: 'value' }
|
|
2173
|
+
]
|
|
2174
|
+
};
|
|
2175
|
+
}
|
|
2110
2176
|
case 'Entry': {
|
|
2111
2177
|
return {
|
|
2112
2178
|
name: 'Entry',
|
|
@@ -2320,7 +2386,7 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
2320
2386
|
return {
|
|
2321
2387
|
name: 'InventoryField',
|
|
2322
2388
|
properties: [
|
|
2323
|
-
{ name: '
|
|
2389
|
+
{ name: 'documents', defaultValue: [] },
|
|
2324
2390
|
{ name: 'modifier' },
|
|
2325
2391
|
{ name: 'name' },
|
|
2326
2392
|
{ name: 'params', defaultValue: [] }
|
|
@@ -2745,6 +2811,15 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
2745
2811
|
]
|
|
2746
2812
|
};
|
|
2747
2813
|
}
|
|
2814
|
+
case 'ParentFunctionCall': {
|
|
2815
|
+
return {
|
|
2816
|
+
name: 'ParentFunctionCall',
|
|
2817
|
+
properties: [
|
|
2818
|
+
{ name: 'method' },
|
|
2819
|
+
{ name: 'params', defaultValue: [] }
|
|
2820
|
+
]
|
|
2821
|
+
};
|
|
2822
|
+
}
|
|
2748
2823
|
case 'ParentIncrementDecrementAssignment': {
|
|
2749
2824
|
return {
|
|
2750
2825
|
name: 'ParentIncrementDecrementAssignment',
|
|
@@ -3222,6 +3297,25 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
3222
3297
|
]
|
|
3223
3298
|
};
|
|
3224
3299
|
}
|
|
3300
|
+
case 'SwitchCase': {
|
|
3301
|
+
return {
|
|
3302
|
+
name: 'SwitchCase',
|
|
3303
|
+
properties: [
|
|
3304
|
+
{ name: 'body' },
|
|
3305
|
+
{ name: 'value' }
|
|
3306
|
+
]
|
|
3307
|
+
};
|
|
3308
|
+
}
|
|
3309
|
+
case 'SwitchStatement': {
|
|
3310
|
+
return {
|
|
3311
|
+
name: 'SwitchStatement',
|
|
3312
|
+
properties: [
|
|
3313
|
+
{ name: 'cases', defaultValue: [] },
|
|
3314
|
+
{ name: 'defaultBody' },
|
|
3315
|
+
{ name: 'value' }
|
|
3316
|
+
]
|
|
3317
|
+
};
|
|
3318
|
+
}
|
|
3225
3319
|
case 'SystemSettingAccess': {
|
|
3226
3320
|
return {
|
|
3227
3321
|
name: 'SystemSettingAccess',
|
|
@@ -3243,7 +3337,7 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
3243
3337
|
return {
|
|
3244
3338
|
name: 'TableField',
|
|
3245
3339
|
properties: [
|
|
3246
|
-
{ name: '
|
|
3340
|
+
{ name: 'documents', defaultValue: [] },
|
|
3247
3341
|
{ name: 'modifier' },
|
|
3248
3342
|
{ name: 'name' },
|
|
3249
3343
|
{ name: 'params', defaultValue: [] }
|
|
@@ -3345,6 +3439,16 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
3345
3439
|
]
|
|
3346
3440
|
};
|
|
3347
3441
|
}
|
|
3442
|
+
case 'TernaryExp': {
|
|
3443
|
+
return {
|
|
3444
|
+
name: 'TernaryExp',
|
|
3445
|
+
properties: [
|
|
3446
|
+
{ name: 'condition' },
|
|
3447
|
+
{ name: 'elseExp' },
|
|
3448
|
+
{ name: 'thenExp' }
|
|
3449
|
+
]
|
|
3450
|
+
};
|
|
3451
|
+
}
|
|
3348
3452
|
case 'Theme': {
|
|
3349
3453
|
return {
|
|
3350
3454
|
name: 'Theme',
|
|
@@ -3385,6 +3489,14 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
3385
3489
|
]
|
|
3386
3490
|
};
|
|
3387
3491
|
}
|
|
3492
|
+
case 'ThemeElevationParam': {
|
|
3493
|
+
return {
|
|
3494
|
+
name: 'ThemeElevationParam',
|
|
3495
|
+
properties: [
|
|
3496
|
+
{ name: 'value' }
|
|
3497
|
+
]
|
|
3498
|
+
};
|
|
3499
|
+
}
|
|
3388
3500
|
case 'ThemeFamilyProp': {
|
|
3389
3501
|
return {
|
|
3390
3502
|
name: 'ThemeFamilyProp',
|
|
@@ -3677,6 +3789,14 @@ export class IntelligentSystemDesignLanguageAstReflection extends AbstractAstRef
|
|
|
3677
3789
|
]
|
|
3678
3790
|
};
|
|
3679
3791
|
}
|
|
3792
|
+
case 'ZoomParam': {
|
|
3793
|
+
return {
|
|
3794
|
+
name: 'ZoomParam',
|
|
3795
|
+
properties: [
|
|
3796
|
+
{ name: 'value' }
|
|
3797
|
+
]
|
|
3798
|
+
};
|
|
3799
|
+
}
|
|
3680
3800
|
case 'Access': {
|
|
3681
3801
|
return {
|
|
3682
3802
|
name: 'Access',
|