@abaplint/core 2.103.8 → 2.103.9
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/build/abaplint.d.ts +231 -221
- package/build/src/abap/5_syntax/expressions/value_body.js +1 -1
- package/build/src/abap/5_syntax/spaghetti_scope.js +2 -2
- package/build/src/abap/5_syntax/statements/controls.js +1 -1
- package/build/src/objects/index.js +23 -22
- package/build/src/objects/{zn02.js → neptune_api.js} +4 -4
- package/build/src/objects/{zn01.js → neptune_app.js} +4 -4
- package/build/src/objects/{zn13.js → neptune_custom_color.js} +4 -4
- package/build/src/objects/{zn15.js → neptune_custom_js_helper.js} +4 -4
- package/build/src/objects/{zn16.js → neptune_documentation.js} +4 -4
- package/build/src/objects/{zn09.js → neptune_enhancement.js} +4 -4
- package/build/src/objects/{zn03.js → neptune_launchpad.js} +4 -4
- package/build/src/objects/{zn07.js → neptune_launchpad_layout.js} +4 -4
- package/build/src/objects/{zn10.js → neptune_login_page.js} +4 -4
- package/build/src/objects/{zn18.js → neptune_media_library.js} +4 -4
- package/build/src/objects/{zn19.js → neptune_media_pack.js} +4 -4
- package/build/src/objects/neptune_metadata.js +21 -0
- package/build/src/objects/{zn22.js → neptune_mobile_client.js} +4 -4
- package/build/src/objects/{zn21.js → neptune_odata.js} +4 -4
- package/build/src/objects/{zn06.js → neptune_policy.js} +4 -4
- package/build/src/objects/{zn17.js → neptune_rfc_mapping.js} +4 -4
- package/build/src/objects/{zn14.js → neptune_rich_text_template.js} +4 -4
- package/build/src/objects/{zn12.js → neptune_splash_screen.js} +4 -4
- package/build/src/objects/{zn11.js → neptune_sticky_banner.js} +4 -4
- package/build/src/objects/{zn05.js → neptune_tile.js} +4 -4
- package/build/src/objects/{zn04.js → neptune_tile_group.js} +4 -4
- package/build/src/objects/{zn08.js → neptune_tile_layout.js} +4 -4
- package/build/src/objects/{zn20.js → neptune_url_alias.js} +4 -4
- package/build/src/registry.js +1 -1
- package/build/src/rules/ambiguous_statement.js +2 -1
- package/build/src/rules/msag_consistency.js +3 -3
- package/package.json +6 -6
package/build/abaplint.d.ts
CHANGED
|
@@ -4281,6 +4281,213 @@ declare class NamespaceSimpleName extends Expression {
|
|
|
4281
4281
|
getRunnable(): IStatementRunnable;
|
|
4282
4282
|
}
|
|
4283
4283
|
|
|
4284
|
+
declare class NeptuneAPI extends AbstractObject {
|
|
4285
|
+
getType(): string;
|
|
4286
|
+
getAllowedNaming(): {
|
|
4287
|
+
maxLength: number;
|
|
4288
|
+
allowNamespace: boolean;
|
|
4289
|
+
};
|
|
4290
|
+
getDescription(): string | undefined;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
declare class NeptuneApp extends AbstractObject {
|
|
4294
|
+
getType(): string;
|
|
4295
|
+
getAllowedNaming(): {
|
|
4296
|
+
maxLength: number;
|
|
4297
|
+
allowNamespace: boolean;
|
|
4298
|
+
};
|
|
4299
|
+
getDescription(): string | undefined;
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
declare class NeptuneCustomColor extends AbstractObject {
|
|
4303
|
+
getType(): string;
|
|
4304
|
+
getAllowedNaming(): {
|
|
4305
|
+
maxLength: number;
|
|
4306
|
+
allowNamespace: boolean;
|
|
4307
|
+
};
|
|
4308
|
+
getDescription(): string | undefined;
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
declare class NeptuneCustomJSHelper extends AbstractObject {
|
|
4312
|
+
getType(): string;
|
|
4313
|
+
getAllowedNaming(): {
|
|
4314
|
+
maxLength: number;
|
|
4315
|
+
allowNamespace: boolean;
|
|
4316
|
+
};
|
|
4317
|
+
getDescription(): string | undefined;
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
declare class NeptuneDocumentation extends AbstractObject {
|
|
4321
|
+
getType(): string;
|
|
4322
|
+
getAllowedNaming(): {
|
|
4323
|
+
maxLength: number;
|
|
4324
|
+
allowNamespace: boolean;
|
|
4325
|
+
};
|
|
4326
|
+
getDescription(): string | undefined;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
declare class NeptuneEnhancement extends AbstractObject {
|
|
4330
|
+
getType(): string;
|
|
4331
|
+
getAllowedNaming(): {
|
|
4332
|
+
maxLength: number;
|
|
4333
|
+
allowNamespace: boolean;
|
|
4334
|
+
};
|
|
4335
|
+
getDescription(): string | undefined;
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
declare class NeptuneLaunchpad extends AbstractObject {
|
|
4339
|
+
getType(): string;
|
|
4340
|
+
getAllowedNaming(): {
|
|
4341
|
+
maxLength: number;
|
|
4342
|
+
allowNamespace: boolean;
|
|
4343
|
+
};
|
|
4344
|
+
getDescription(): string | undefined;
|
|
4345
|
+
}
|
|
4346
|
+
|
|
4347
|
+
declare class NeptuneLaunchpadLayout extends AbstractObject {
|
|
4348
|
+
getType(): string;
|
|
4349
|
+
getAllowedNaming(): {
|
|
4350
|
+
maxLength: number;
|
|
4351
|
+
allowNamespace: boolean;
|
|
4352
|
+
};
|
|
4353
|
+
getDescription(): string | undefined;
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4356
|
+
declare class NeptuneLoginPage extends AbstractObject {
|
|
4357
|
+
getType(): string;
|
|
4358
|
+
getAllowedNaming(): {
|
|
4359
|
+
maxLength: number;
|
|
4360
|
+
allowNamespace: boolean;
|
|
4361
|
+
};
|
|
4362
|
+
getDescription(): string | undefined;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
declare class NeptuneMediaLibrary extends AbstractObject {
|
|
4366
|
+
getType(): string;
|
|
4367
|
+
getAllowedNaming(): {
|
|
4368
|
+
maxLength: number;
|
|
4369
|
+
allowNamespace: boolean;
|
|
4370
|
+
};
|
|
4371
|
+
getDescription(): string | undefined;
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
declare class NeptuneMediaPack extends AbstractObject {
|
|
4375
|
+
getType(): string;
|
|
4376
|
+
getAllowedNaming(): {
|
|
4377
|
+
maxLength: number;
|
|
4378
|
+
allowNamespace: boolean;
|
|
4379
|
+
};
|
|
4380
|
+
getDescription(): string | undefined;
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4383
|
+
declare class NeptuneMetadata extends AbstractObject {
|
|
4384
|
+
getType(): string;
|
|
4385
|
+
getAllowedNaming(): {
|
|
4386
|
+
maxLength: number;
|
|
4387
|
+
allowNamespace: boolean;
|
|
4388
|
+
};
|
|
4389
|
+
getDescription(): string | undefined;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
declare class NeptuneMobileClient extends AbstractObject {
|
|
4393
|
+
getType(): string;
|
|
4394
|
+
getAllowedNaming(): {
|
|
4395
|
+
maxLength: number;
|
|
4396
|
+
allowNamespace: boolean;
|
|
4397
|
+
};
|
|
4398
|
+
getDescription(): string | undefined;
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
declare class NeptuneOData extends AbstractObject {
|
|
4402
|
+
getType(): string;
|
|
4403
|
+
getAllowedNaming(): {
|
|
4404
|
+
maxLength: number;
|
|
4405
|
+
allowNamespace: boolean;
|
|
4406
|
+
};
|
|
4407
|
+
getDescription(): string | undefined;
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4410
|
+
declare class NeptunePolicy extends AbstractObject {
|
|
4411
|
+
getType(): string;
|
|
4412
|
+
getAllowedNaming(): {
|
|
4413
|
+
maxLength: number;
|
|
4414
|
+
allowNamespace: boolean;
|
|
4415
|
+
};
|
|
4416
|
+
getDescription(): string | undefined;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
declare class NeptuneRFCMapping extends AbstractObject {
|
|
4420
|
+
getType(): string;
|
|
4421
|
+
getAllowedNaming(): {
|
|
4422
|
+
maxLength: number;
|
|
4423
|
+
allowNamespace: boolean;
|
|
4424
|
+
};
|
|
4425
|
+
getDescription(): string | undefined;
|
|
4426
|
+
}
|
|
4427
|
+
|
|
4428
|
+
declare class NeptuneRichTextTemplate extends AbstractObject {
|
|
4429
|
+
getType(): string;
|
|
4430
|
+
getAllowedNaming(): {
|
|
4431
|
+
maxLength: number;
|
|
4432
|
+
allowNamespace: boolean;
|
|
4433
|
+
};
|
|
4434
|
+
getDescription(): string | undefined;
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
declare class NeptuneSplashScreen extends AbstractObject {
|
|
4438
|
+
getType(): string;
|
|
4439
|
+
getAllowedNaming(): {
|
|
4440
|
+
maxLength: number;
|
|
4441
|
+
allowNamespace: boolean;
|
|
4442
|
+
};
|
|
4443
|
+
getDescription(): string | undefined;
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
declare class NeptuneStickyBanner extends AbstractObject {
|
|
4447
|
+
getType(): string;
|
|
4448
|
+
getAllowedNaming(): {
|
|
4449
|
+
maxLength: number;
|
|
4450
|
+
allowNamespace: boolean;
|
|
4451
|
+
};
|
|
4452
|
+
getDescription(): string | undefined;
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
declare class NeptuneTile extends AbstractObject {
|
|
4456
|
+
getType(): string;
|
|
4457
|
+
getAllowedNaming(): {
|
|
4458
|
+
maxLength: number;
|
|
4459
|
+
allowNamespace: boolean;
|
|
4460
|
+
};
|
|
4461
|
+
getDescription(): string | undefined;
|
|
4462
|
+
}
|
|
4463
|
+
|
|
4464
|
+
declare class NeptuneTileGroup extends AbstractObject {
|
|
4465
|
+
getType(): string;
|
|
4466
|
+
getAllowedNaming(): {
|
|
4467
|
+
maxLength: number;
|
|
4468
|
+
allowNamespace: boolean;
|
|
4469
|
+
};
|
|
4470
|
+
getDescription(): string | undefined;
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
declare class NeptuneTileLayout extends AbstractObject {
|
|
4474
|
+
getType(): string;
|
|
4475
|
+
getAllowedNaming(): {
|
|
4476
|
+
maxLength: number;
|
|
4477
|
+
allowNamespace: boolean;
|
|
4478
|
+
};
|
|
4479
|
+
getDescription(): string | undefined;
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
declare class NeptuneURLAlias extends AbstractObject {
|
|
4483
|
+
getType(): string;
|
|
4484
|
+
getAllowedNaming(): {
|
|
4485
|
+
maxLength: number;
|
|
4486
|
+
allowNamespace: boolean;
|
|
4487
|
+
};
|
|
4488
|
+
getDescription(): string | undefined;
|
|
4489
|
+
}
|
|
4490
|
+
|
|
4284
4491
|
declare class NewLine implements IStatement {
|
|
4285
4492
|
getMatcher(): IStatementRunnable;
|
|
4286
4493
|
}
|
|
@@ -4515,28 +4722,29 @@ declare namespace Objects {
|
|
|
4515
4722
|
WebDynproComponentConfiguration,
|
|
4516
4723
|
WebDynproComponent,
|
|
4517
4724
|
WebMIME,
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4725
|
+
NeptuneMetadata,
|
|
4726
|
+
NeptuneApp,
|
|
4727
|
+
NeptuneAPI,
|
|
4728
|
+
NeptuneLaunchpad,
|
|
4729
|
+
NeptuneTileGroup,
|
|
4730
|
+
NeptuneTile,
|
|
4731
|
+
NeptunePolicy,
|
|
4732
|
+
NeptuneLaunchpadLayout,
|
|
4733
|
+
NeptuneTileLayout,
|
|
4734
|
+
NeptuneEnhancement,
|
|
4735
|
+
NeptuneLoginPage,
|
|
4736
|
+
NeptuneStickyBanner,
|
|
4737
|
+
NeptuneSplashScreen,
|
|
4738
|
+
NeptuneCustomColor,
|
|
4739
|
+
NeptuneRichTextTemplate,
|
|
4740
|
+
NeptuneCustomJSHelper,
|
|
4741
|
+
NeptuneDocumentation,
|
|
4742
|
+
NeptuneRFCMapping,
|
|
4743
|
+
NeptuneMediaLibrary,
|
|
4744
|
+
NeptuneMediaPack,
|
|
4745
|
+
NeptuneURLAlias,
|
|
4746
|
+
NeptuneOData,
|
|
4747
|
+
NeptuneMobileClient
|
|
4540
4748
|
}
|
|
4541
4749
|
}
|
|
4542
4750
|
export { Objects }
|
|
@@ -6692,7 +6900,7 @@ declare class ValueBodyLines extends Expression {
|
|
|
6692
6900
|
}
|
|
6693
6901
|
|
|
6694
6902
|
export declare enum Version {
|
|
6695
|
-
OpenABAP = "open-abap",
|
|
6903
|
+
OpenABAP = "open-abap",// as 702, but with some extra new language features
|
|
6696
6904
|
v700 = "v700",
|
|
6697
6905
|
v702 = "v702",
|
|
6698
6906
|
v740sp02 = "v740sp02",
|
|
@@ -6982,202 +7190,4 @@ declare class XStringType extends AbstractType {
|
|
|
6982
7190
|
toCDS(): string;
|
|
6983
7191
|
}
|
|
6984
7192
|
|
|
6985
|
-
declare class ZN01 extends AbstractObject {
|
|
6986
|
-
getType(): string;
|
|
6987
|
-
getAllowedNaming(): {
|
|
6988
|
-
maxLength: number;
|
|
6989
|
-
allowNamespace: boolean;
|
|
6990
|
-
};
|
|
6991
|
-
getDescription(): string | undefined;
|
|
6992
|
-
}
|
|
6993
|
-
|
|
6994
|
-
declare class ZN0122 extends AbstractObject {
|
|
6995
|
-
getType(): string;
|
|
6996
|
-
getAllowedNaming(): {
|
|
6997
|
-
maxLength: number;
|
|
6998
|
-
allowNamespace: boolean;
|
|
6999
|
-
};
|
|
7000
|
-
getDescription(): string | undefined;
|
|
7001
|
-
}
|
|
7002
|
-
|
|
7003
|
-
declare class ZN02 extends AbstractObject {
|
|
7004
|
-
getType(): string;
|
|
7005
|
-
getAllowedNaming(): {
|
|
7006
|
-
maxLength: number;
|
|
7007
|
-
allowNamespace: boolean;
|
|
7008
|
-
};
|
|
7009
|
-
getDescription(): string | undefined;
|
|
7010
|
-
}
|
|
7011
|
-
|
|
7012
|
-
declare class ZN03 extends AbstractObject {
|
|
7013
|
-
getType(): string;
|
|
7014
|
-
getAllowedNaming(): {
|
|
7015
|
-
maxLength: number;
|
|
7016
|
-
allowNamespace: boolean;
|
|
7017
|
-
};
|
|
7018
|
-
getDescription(): string | undefined;
|
|
7019
|
-
}
|
|
7020
|
-
|
|
7021
|
-
declare class ZN04 extends AbstractObject {
|
|
7022
|
-
getType(): string;
|
|
7023
|
-
getAllowedNaming(): {
|
|
7024
|
-
maxLength: number;
|
|
7025
|
-
allowNamespace: boolean;
|
|
7026
|
-
};
|
|
7027
|
-
getDescription(): string | undefined;
|
|
7028
|
-
}
|
|
7029
|
-
|
|
7030
|
-
declare class ZN05 extends AbstractObject {
|
|
7031
|
-
getType(): string;
|
|
7032
|
-
getAllowedNaming(): {
|
|
7033
|
-
maxLength: number;
|
|
7034
|
-
allowNamespace: boolean;
|
|
7035
|
-
};
|
|
7036
|
-
getDescription(): string | undefined;
|
|
7037
|
-
}
|
|
7038
|
-
|
|
7039
|
-
declare class ZN06 extends AbstractObject {
|
|
7040
|
-
getType(): string;
|
|
7041
|
-
getAllowedNaming(): {
|
|
7042
|
-
maxLength: number;
|
|
7043
|
-
allowNamespace: boolean;
|
|
7044
|
-
};
|
|
7045
|
-
getDescription(): string | undefined;
|
|
7046
|
-
}
|
|
7047
|
-
|
|
7048
|
-
declare class ZN07 extends AbstractObject {
|
|
7049
|
-
getType(): string;
|
|
7050
|
-
getAllowedNaming(): {
|
|
7051
|
-
maxLength: number;
|
|
7052
|
-
allowNamespace: boolean;
|
|
7053
|
-
};
|
|
7054
|
-
getDescription(): string | undefined;
|
|
7055
|
-
}
|
|
7056
|
-
|
|
7057
|
-
declare class ZN08 extends AbstractObject {
|
|
7058
|
-
getType(): string;
|
|
7059
|
-
getAllowedNaming(): {
|
|
7060
|
-
maxLength: number;
|
|
7061
|
-
allowNamespace: boolean;
|
|
7062
|
-
};
|
|
7063
|
-
getDescription(): string | undefined;
|
|
7064
|
-
}
|
|
7065
|
-
|
|
7066
|
-
declare class ZN09 extends AbstractObject {
|
|
7067
|
-
getType(): string;
|
|
7068
|
-
getAllowedNaming(): {
|
|
7069
|
-
maxLength: number;
|
|
7070
|
-
allowNamespace: boolean;
|
|
7071
|
-
};
|
|
7072
|
-
getDescription(): string | undefined;
|
|
7073
|
-
}
|
|
7074
|
-
|
|
7075
|
-
declare class ZN10 extends AbstractObject {
|
|
7076
|
-
getType(): string;
|
|
7077
|
-
getAllowedNaming(): {
|
|
7078
|
-
maxLength: number;
|
|
7079
|
-
allowNamespace: boolean;
|
|
7080
|
-
};
|
|
7081
|
-
getDescription(): string | undefined;
|
|
7082
|
-
}
|
|
7083
|
-
|
|
7084
|
-
declare class ZN11 extends AbstractObject {
|
|
7085
|
-
getType(): string;
|
|
7086
|
-
getAllowedNaming(): {
|
|
7087
|
-
maxLength: number;
|
|
7088
|
-
allowNamespace: boolean;
|
|
7089
|
-
};
|
|
7090
|
-
getDescription(): string | undefined;
|
|
7091
|
-
}
|
|
7092
|
-
|
|
7093
|
-
declare class ZN12 extends AbstractObject {
|
|
7094
|
-
getType(): string;
|
|
7095
|
-
getAllowedNaming(): {
|
|
7096
|
-
maxLength: number;
|
|
7097
|
-
allowNamespace: boolean;
|
|
7098
|
-
};
|
|
7099
|
-
getDescription(): string | undefined;
|
|
7100
|
-
}
|
|
7101
|
-
|
|
7102
|
-
declare class ZN13 extends AbstractObject {
|
|
7103
|
-
getType(): string;
|
|
7104
|
-
getAllowedNaming(): {
|
|
7105
|
-
maxLength: number;
|
|
7106
|
-
allowNamespace: boolean;
|
|
7107
|
-
};
|
|
7108
|
-
getDescription(): string | undefined;
|
|
7109
|
-
}
|
|
7110
|
-
|
|
7111
|
-
declare class ZN14 extends AbstractObject {
|
|
7112
|
-
getType(): string;
|
|
7113
|
-
getAllowedNaming(): {
|
|
7114
|
-
maxLength: number;
|
|
7115
|
-
allowNamespace: boolean;
|
|
7116
|
-
};
|
|
7117
|
-
getDescription(): string | undefined;
|
|
7118
|
-
}
|
|
7119
|
-
|
|
7120
|
-
declare class ZN15 extends AbstractObject {
|
|
7121
|
-
getType(): string;
|
|
7122
|
-
getAllowedNaming(): {
|
|
7123
|
-
maxLength: number;
|
|
7124
|
-
allowNamespace: boolean;
|
|
7125
|
-
};
|
|
7126
|
-
getDescription(): string | undefined;
|
|
7127
|
-
}
|
|
7128
|
-
|
|
7129
|
-
declare class ZN16 extends AbstractObject {
|
|
7130
|
-
getType(): string;
|
|
7131
|
-
getAllowedNaming(): {
|
|
7132
|
-
maxLength: number;
|
|
7133
|
-
allowNamespace: boolean;
|
|
7134
|
-
};
|
|
7135
|
-
getDescription(): string | undefined;
|
|
7136
|
-
}
|
|
7137
|
-
|
|
7138
|
-
declare class ZN17 extends AbstractObject {
|
|
7139
|
-
getType(): string;
|
|
7140
|
-
getAllowedNaming(): {
|
|
7141
|
-
maxLength: number;
|
|
7142
|
-
allowNamespace: boolean;
|
|
7143
|
-
};
|
|
7144
|
-
getDescription(): string | undefined;
|
|
7145
|
-
}
|
|
7146
|
-
|
|
7147
|
-
declare class ZN18 extends AbstractObject {
|
|
7148
|
-
getType(): string;
|
|
7149
|
-
getAllowedNaming(): {
|
|
7150
|
-
maxLength: number;
|
|
7151
|
-
allowNamespace: boolean;
|
|
7152
|
-
};
|
|
7153
|
-
getDescription(): string | undefined;
|
|
7154
|
-
}
|
|
7155
|
-
|
|
7156
|
-
declare class ZN19 extends AbstractObject {
|
|
7157
|
-
getType(): string;
|
|
7158
|
-
getAllowedNaming(): {
|
|
7159
|
-
maxLength: number;
|
|
7160
|
-
allowNamespace: boolean;
|
|
7161
|
-
};
|
|
7162
|
-
getDescription(): string | undefined;
|
|
7163
|
-
}
|
|
7164
|
-
|
|
7165
|
-
declare class ZN20 extends AbstractObject {
|
|
7166
|
-
getType(): string;
|
|
7167
|
-
getAllowedNaming(): {
|
|
7168
|
-
maxLength: number;
|
|
7169
|
-
allowNamespace: boolean;
|
|
7170
|
-
};
|
|
7171
|
-
getDescription(): string | undefined;
|
|
7172
|
-
}
|
|
7173
|
-
|
|
7174
|
-
declare class ZN21 extends AbstractObject {
|
|
7175
|
-
getType(): string;
|
|
7176
|
-
getAllowedNaming(): {
|
|
7177
|
-
maxLength: number;
|
|
7178
|
-
allowNamespace: boolean;
|
|
7179
|
-
};
|
|
7180
|
-
getDescription(): string | undefined;
|
|
7181
|
-
}
|
|
7182
|
-
|
|
7183
7193
|
export { }
|
|
@@ -29,7 +29,7 @@ class ValueBody {
|
|
|
29
29
|
}
|
|
30
30
|
let type = undefined; // todo, this is only correct if there is a single source in the body
|
|
31
31
|
for (const s of node.findDirectExpressions(Expressions.Source)) {
|
|
32
|
-
type = new source_1.Source().runSyntax(s, scope, filename);
|
|
32
|
+
type = new source_1.Source().runSyntax(s, scope, filename, type);
|
|
33
33
|
}
|
|
34
34
|
for (const foo of node.findDirectExpressions(Expressions.ValueBodyLine)) {
|
|
35
35
|
if (!(targetType instanceof basic_1.TableType)
|
|
@@ -15,7 +15,7 @@ class Controls {
|
|
|
15
15
|
}
|
|
16
16
|
if (node.findDirectTokenByText("TABLEVIEW") && token) {
|
|
17
17
|
const cols = new basic_1.StructureType([
|
|
18
|
-
{ name: "SCREEN", type: new basic_1.CharacterType(1) },
|
|
18
|
+
{ name: "SCREEN", type: new basic_1.CharacterType(1) }, // todo
|
|
19
19
|
{ name: "INDEX", type: basic_1.IntegerType.get() },
|
|
20
20
|
{ name: "SELECTED", type: new basic_1.CharacterType(1) },
|
|
21
21
|
{ name: "VISLENGTH", type: basic_1.IntegerType.get() },
|
|
@@ -140,26 +140,27 @@ __exportStar(require("./web_dynpro_application"), exports);
|
|
|
140
140
|
__exportStar(require("./web_dynpro_component_configuration"), exports);
|
|
141
141
|
__exportStar(require("./web_dynpro_component"), exports);
|
|
142
142
|
__exportStar(require("./web_mime"), exports);
|
|
143
|
-
__exportStar(require("./
|
|
144
|
-
__exportStar(require("./
|
|
145
|
-
__exportStar(require("./
|
|
146
|
-
__exportStar(require("./
|
|
147
|
-
__exportStar(require("./
|
|
148
|
-
__exportStar(require("./
|
|
149
|
-
__exportStar(require("./
|
|
150
|
-
__exportStar(require("./
|
|
151
|
-
__exportStar(require("./
|
|
152
|
-
__exportStar(require("./
|
|
153
|
-
__exportStar(require("./
|
|
154
|
-
__exportStar(require("./
|
|
155
|
-
__exportStar(require("./
|
|
156
|
-
__exportStar(require("./
|
|
157
|
-
__exportStar(require("./
|
|
158
|
-
__exportStar(require("./
|
|
159
|
-
__exportStar(require("./
|
|
160
|
-
__exportStar(require("./
|
|
161
|
-
__exportStar(require("./
|
|
162
|
-
__exportStar(require("./
|
|
163
|
-
__exportStar(require("./
|
|
164
|
-
__exportStar(require("./
|
|
143
|
+
__exportStar(require("./neptune_metadata"), exports);
|
|
144
|
+
__exportStar(require("./neptune_app"), exports);
|
|
145
|
+
__exportStar(require("./neptune_api"), exports);
|
|
146
|
+
__exportStar(require("./neptune_launchpad"), exports);
|
|
147
|
+
__exportStar(require("./neptune_tile_group"), exports);
|
|
148
|
+
__exportStar(require("./neptune_tile"), exports);
|
|
149
|
+
__exportStar(require("./neptune_policy"), exports);
|
|
150
|
+
__exportStar(require("./neptune_launchpad_layout"), exports);
|
|
151
|
+
__exportStar(require("./neptune_tile_layout"), exports);
|
|
152
|
+
__exportStar(require("./neptune_enhancement"), exports);
|
|
153
|
+
__exportStar(require("./neptune_login_page"), exports);
|
|
154
|
+
__exportStar(require("./neptune_sticky_banner"), exports);
|
|
155
|
+
__exportStar(require("./neptune_splash_screen"), exports);
|
|
156
|
+
__exportStar(require("./neptune_custom_color"), exports);
|
|
157
|
+
__exportStar(require("./neptune_rich_text_template"), exports);
|
|
158
|
+
__exportStar(require("./neptune_custom_js_helper"), exports);
|
|
159
|
+
__exportStar(require("./neptune_documentation"), exports);
|
|
160
|
+
__exportStar(require("./neptune_rfc_mapping"), exports);
|
|
161
|
+
__exportStar(require("./neptune_media_library"), exports);
|
|
162
|
+
__exportStar(require("./neptune_media_pack"), exports);
|
|
163
|
+
__exportStar(require("./neptune_url_alias"), exports);
|
|
164
|
+
__exportStar(require("./neptune_odata"), exports);
|
|
165
|
+
__exportStar(require("./neptune_mobile_client"), exports);
|
|
165
166
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneAPI = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneAPI extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN02";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN02 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneAPI = NeptuneAPI;
|
|
21
|
+
//# sourceMappingURL=neptune_api.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneApp = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneApp extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN01";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN01 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneApp = NeptuneApp;
|
|
21
|
+
//# sourceMappingURL=neptune_app.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneCustomColor = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneCustomColor extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN13";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN13 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneCustomColor = NeptuneCustomColor;
|
|
21
|
+
//# sourceMappingURL=neptune_custom_color.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneCustomJSHelper = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneCustomJSHelper extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN15";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN15 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneCustomJSHelper = NeptuneCustomJSHelper;
|
|
21
|
+
//# sourceMappingURL=neptune_custom_js_helper.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneDocumentation = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneDocumentation extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN16";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN16 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneDocumentation = NeptuneDocumentation;
|
|
21
|
+
//# sourceMappingURL=neptune_documentation.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneEnhancement = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneEnhancement extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN09";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN09 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneEnhancement = NeptuneEnhancement;
|
|
21
|
+
//# sourceMappingURL=neptune_enhancement.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneLaunchpad = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneLaunchpad extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN03";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN03 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneLaunchpad = NeptuneLaunchpad;
|
|
21
|
+
//# sourceMappingURL=neptune_launchpad.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneLaunchpadLayout = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneLaunchpadLayout extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN07";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN07 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneLaunchpadLayout = NeptuneLaunchpadLayout;
|
|
21
|
+
//# sourceMappingURL=neptune_launchpad_layout.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneLoginPage = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneLoginPage extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN10";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN10 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneLoginPage = NeptuneLoginPage;
|
|
21
|
+
//# sourceMappingURL=neptune_login_page.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneMediaLibrary = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneMediaLibrary extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN18";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN18 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneMediaLibrary = NeptuneMediaLibrary;
|
|
21
|
+
//# sourceMappingURL=neptune_media_library.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneMediaPack = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneMediaPack extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN19";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN19 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneMediaPack = NeptuneMediaPack;
|
|
21
|
+
//# sourceMappingURL=neptune_media_pack.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NeptuneMetadata = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class NeptuneMetadata extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "ZN00";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.NeptuneMetadata = NeptuneMetadata;
|
|
21
|
+
//# sourceMappingURL=neptune_metadata.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneMobileClient = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneMobileClient extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN22";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN0122 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneMobileClient = NeptuneMobileClient;
|
|
21
|
+
//# sourceMappingURL=neptune_mobile_client.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneOData = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneOData extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN21";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN21 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneOData = NeptuneOData;
|
|
21
|
+
//# sourceMappingURL=neptune_odata.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptunePolicy = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptunePolicy extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN06";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN06 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptunePolicy = NeptunePolicy;
|
|
21
|
+
//# sourceMappingURL=neptune_policy.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneRFCMapping = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneRFCMapping extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN17";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN17 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneRFCMapping = NeptuneRFCMapping;
|
|
21
|
+
//# sourceMappingURL=neptune_rfc_mapping.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneRichTextTemplate = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneRichTextTemplate extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN14";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN14 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneRichTextTemplate = NeptuneRichTextTemplate;
|
|
21
|
+
//# sourceMappingURL=neptune_rich_text_template.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneSplashScreen = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneSplashScreen extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN12";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN12 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneSplashScreen = NeptuneSplashScreen;
|
|
21
|
+
//# sourceMappingURL=neptune_splash_screen.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneStickyBanner = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneStickyBanner extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN11";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN11 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneStickyBanner = NeptuneStickyBanner;
|
|
21
|
+
//# sourceMappingURL=neptune_sticky_banner.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneTile = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneTile extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN05";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN05 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneTile = NeptuneTile;
|
|
21
|
+
//# sourceMappingURL=neptune_tile.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneTileGroup = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneTileGroup extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN04";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN04 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneTileGroup = NeptuneTileGroup;
|
|
21
|
+
//# sourceMappingURL=neptune_tile_group.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneTileLayout = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneTileLayout extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN08";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN08 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneTileLayout = NeptuneTileLayout;
|
|
21
|
+
//# sourceMappingURL=neptune_tile_layout.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NeptuneURLAlias = void 0;
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
-
class
|
|
5
|
+
class NeptuneURLAlias extends _abstract_object_1.AbstractObject {
|
|
6
6
|
getType() {
|
|
7
7
|
return "ZN20";
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ class ZN20 extends _abstract_object_1.AbstractObject {
|
|
|
17
17
|
return undefined;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
exports.
|
|
21
|
-
//# sourceMappingURL=
|
|
20
|
+
exports.NeptuneURLAlias = NeptuneURLAlias;
|
|
21
|
+
//# sourceMappingURL=neptune_url_alias.js.map
|
package/build/src/registry.js
CHANGED
|
@@ -28,7 +28,8 @@ Only works if the target version is 740sp05 or above`,
|
|
|
28
28
|
badExample: `DELETE foo FROM bar.
|
|
29
29
|
MODIFY foo FROM bar.`,
|
|
30
30
|
goodExample: `DELETE foo FROM @bar.
|
|
31
|
-
MODIFY TABLE foo FROM bar
|
|
31
|
+
MODIFY TABLE foo FROM bar.
|
|
32
|
+
MODIFY zfoo FROM @wa.`,
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
getMessage() {
|
|
@@ -8,8 +8,8 @@ const position_1 = require("../position");
|
|
|
8
8
|
class MSAGConsistencyConf extends _basic_rule_config_1.BasicRuleConfig {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
|
-
/**
|
|
12
|
-
this.
|
|
11
|
+
/** parameters must be numbered */
|
|
12
|
+
this.numericParameters = true;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
exports.MSAGConsistencyConf = MSAGConsistencyConf;
|
|
@@ -67,7 +67,7 @@ class MSAGConsistency {
|
|
|
67
67
|
else {
|
|
68
68
|
numbers.add(num);
|
|
69
69
|
}
|
|
70
|
-
if (this.getConfig().
|
|
70
|
+
if (this.getConfig().numericParameters === true) {
|
|
71
71
|
const placeholderCount = message.getPlaceholderCount();
|
|
72
72
|
if (placeholderCount > 4) {
|
|
73
73
|
const text = `More than 4 placeholders in mesasge ${message.getNumber()}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.9",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"homepage": "https://abaplint.org",
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@microsoft/api-extractor": "^7.38.3",
|
|
54
|
-
"@types/chai": "^4.3.
|
|
55
|
-
"@types/mocha": "^10.0.
|
|
56
|
-
"@types/node": "^20.9.
|
|
54
|
+
"@types/chai": "^4.3.11",
|
|
55
|
+
"@types/mocha": "^10.0.6",
|
|
56
|
+
"@types/node": "^20.9.4",
|
|
57
57
|
"chai": "^4.3.10",
|
|
58
|
-
"eslint": "^8.
|
|
58
|
+
"eslint": "^8.54.0",
|
|
59
59
|
"mocha": "^10.2.0",
|
|
60
60
|
"c8": "^8.0.1",
|
|
61
61
|
"source-map-support": "^0.5.21",
|
|
62
62
|
"ts-json-schema-generator": "^1.4.0",
|
|
63
|
-
"typescript": "^5.
|
|
63
|
+
"typescript": "^5.3.2"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"fast-xml-parser": "^4.3.2",
|