Skip to content

WebDSL-DataModel.sdf3

pdmosses/webdsl-statix/webdslstatix/syntax/WebDSL-DataModel.sdf3

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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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
145
146
module 

imports
  WebDSL-Action
  WebDSL-Core
  WebDSL-Lexical

context-free sorts

  

context-free syntax

  Definition.Entity = <
    entity <Id> : <Id> {
      <EntityBodyDeclaration*>
    }
  >
  Definition.EntityNoSuper = <
    entity <Id> {
      <EntityBodyDeclaration*>
    }
  >
  Definition.SessionEntity = <
    session <Id> {
      <EntityBodyDeclaration*>
    }
  >

  Definition.ExtendEntity = <
    extend entity <Id> {
      <EntityBodyDeclaration*>
    }
  >
  Definition.ExtendSessionEntity = <
    extend session <Id> {
      <EntityBodyDeclaration*>
    }
  >

context-free restrictions

  "cache" -/- [a-zA-Z0-9\_]

context-free syntax

  Definition.GlobalVarDecl = <
    var <VarId> : <Sort>
  >
  Definition.GlobalVarDeclDepr = <
    var <VarId> : <Sort> ;
  > {deprecated("remove ;")}
  Definition.GlobalVarDeclInit = <
    var <VarId> : <Sort> := <Exp>
  >
  Definition.GlobalVarDeclInitDepr = <
    var <VarId> : <Sort> := <Exp> ;
  > {deprecated("remove ;")}
  Definition.GlobalVarDeclInitInferred = <
    var <VarId> := <Exp>
  >
  Definition.GlobalVarDeclInitInferredDepr = <
    var <VarId> := <Exp> ;
  > {deprecated("remove ;")}
  Definition.RequestVarDecl = <
    request var <VarId> : <Sort>
  >
  Definition.RequestVarDeclDepr = <
    request var <VarId> : <Sort> ;
  > {deprecated("remove ;")}
  Definition.RequestVarDeclInit = <
    request var <VarId> : <Sort> := <Exp>
  >
  Definition.RequestVarDeclInitDepr = <
    request var <VarId> : <Sort> := <Exp> ;
  > {deprecated("remove ;")}
  Definition.RequestVarDeclInitInferred = <
    request var <VarId> := <Exp>
  >
  Definition.RequestVarDeclInitInferredDepr = <
    request var <VarId> := <Exp> ;
  > {deprecated("remove ;")}

context-free sorts

   

context-free syntax

  .Property = <
    <PropertyId> <PropKind> <Sort> <OptPropAnnos>
  >
  .DerivedProperty = <
    <PropertyId> <PropKind> <Sort> <OptPropAnnos> := <Exp>
  >
  .CachedEntity = <
    cache
  >
  .PropAnnos = <( <{Annotation ","}*> )>
  .OptPropAnnosNone = <>
  .Simple = <::>
  .Ref = <-\>>
  .Comp = <\<\>>
  .AnyProp = <:>

context-free sorts

  

context-free syntax

  .SimpleAnno = AnnotationId
  .TransientAnno = <transient>
  .IdAnno = <id>
  .NameAnno = <name>
  .CacheAnno = <cache>
  .InverseAnno = <inverse = <Id> . <Id>>
  .IncompleteInverseAnno = <inverse = <Id>>
  .InverseSlaveAnno = <inverseSlave = <Id> . <Id>>
  .InverseReferenceOnlyAnno = <inverse-reference-only>
  .InlineAnno = <inline ( <{Id ","}*> )>
  .SelectAnno = <select = <Id>>
  .NotNullAnno = <not null>
  .NotEmptyAnno = <not empty>
  .AllowedAnno = <allowed = <Exp>>
  .DefaultAnno = <default = <Exp>>
  .LengthAnno = <length = <Int>>
  .FormatAnno = <format = <String>>
  .IndexEmptyAnno = <index ( )>
  .IndexAnno = <index ( <Int> )>
  .CollationAnno = <collation ( <Id> )>
  .IdErrorAnno = <iderror = <String>>
  .IdEmptyErrorAnno = <idemptyerror = <String>>

lexical sorts

  AnnotationId

lexical syntax

  AnnotationId = Id
  AnnotationId = "searchable" {reject}
  AnnotationId = "transient" {reject}
  AnnotationId = "id" {reject}
  AnnotationId = "name" {reject}
  AnnotationId = "cache" {reject}