Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 1x 1x | import {Version} from "../../../version"; import {IStatement} from "./_statement"; import {seq, alt, altPrio, ver, regex as reg, optPrio} from "../combi"; import {MethodDefChanging, MethodDefReturning, Redefinition, MethodName, MethodDefExporting, MethodDefImporting, EventHandler, Abstract, MethodDefRaising, MethodDefExceptions, MethodParamName, NamespaceSimpleName, TypeName, EntityAssociation} from "../expressions"; import {IStatementRunnable} from "../statement_runnable"; export class MethodDef implements IStatement { public getMatcher(): IStatementRunnable { const def = ver(Version.v740sp08, seq("DEFAULT", altPrio("FAIL", "IGNORE"))); const parameters = seq(optPrio(altPrio("FINAL", def, Abstract)), optPrio(MethodDefImporting), optPrio(MethodDefExporting), optPrio(MethodDefChanging), optPrio(MethodDefReturning), optPrio(altPrio(MethodDefRaising, MethodDefExceptions))); const testing = seq(optPrio(Abstract), "FOR TESTING", optPrio(altPrio(MethodDefRaising, MethodDefExceptions))); // todo, this is only from version something const tableFunction = seq("TABLE FUNCTION", reg(/^\w+?$/)); // todo, this is only from version something const ddl = "DDL OBJECT OPTIONS CDS SESSION CLIENT REQUIRED"; const result = seq("RESULT", MethodParamName); const link = seq("LINK", MethodParamName); const full = seq("FULL", MethodParamName); const modify = alt( seq("FOR ACTION", TypeName, optPrio(result)), seq("FOR CREATE", alt(TypeName, EntityAssociation)), seq("FOR DELETE", TypeName), seq("FOR UPDATE", TypeName)); const forRead = seq("FOR READ", alt(TypeName, EntityAssociation), optPrio(full), result, optPrio(link)); const forfunction = seq("FOR FUNCTION", TypeName, result); const behavior = altPrio( seq("VALIDATE ON SAVE IMPORTING", MethodParamName, "FOR", TypeName), seq("MODIFY IMPORTING", MethodParamName, modify), seq("READ IMPORTING", MethodParamName, altPrio(forRead, forfunction)), seq("FEATURES IMPORTING", MethodParamName, "REQUEST", NamespaceSimpleName, "FOR", NamespaceSimpleName, result), seq("BEHAVIOR IMPORTING", MethodParamName, "FOR CREATE", TypeName, MethodParamName, "FOR UPDATE", TypeName, MethodParamName, "FOR DELETE", TypeName), seq("BEHAVIOR IMPORTING", MethodParamName, "FOR READ", TypeName, result), seq(alt("BEHAVIOR", "LOCK"), "IMPORTING", MethodParamName, "FOR LOCK", TypeName), seq("DETERMINE", alt("ON MODIFY", "ON SAVE"), "IMPORTING", MethodParamName, "FOR", TypeName), seq("GLOBAL AUTHORIZATION IMPORTING REQUEST", MethodParamName, "FOR", TypeName, result), seq("INSTANCE AUTHORIZATION IMPORTING", MethodParamName, "REQUEST", MethodParamName, "FOR", TypeName, result), seq("INSTANCE FEATURES IMPORTING", MethodParamName, "REQUEST", MethodParamName, "FOR", TypeName, result), ); // todo, this is only from version something const amdp = seq( "AMDP OPTIONS CDS SESSION CLIENT CURRENT", optPrio(MethodDefImporting), optPrio(MethodDefExporting), optPrio(MethodDefRaising)); const ret = seq(altPrio("CLASS-METHODS", "METHODS"), MethodName, alt(seq(optPrio(Abstract), optPrio(def), EventHandler), parameters, testing, seq("FOR", alt(tableFunction, ddl, behavior)), amdp, "NOT AT END OF MODE", optPrio(Redefinition))); return ret; } } |