summaryrefslogtreecommitdiff
path: root/spec/13-syntax-summary.md
blob: be5cc1324ecd9098b60db0dd25938b9d525b6350 (plain) (blame)
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
---
title: Syntax Summary
layout: default
chapter: 13
---

# Syntax Summary

The following descriptions of Scala tokens uses literal characters `‘c’` when referring to the ASCII fragment `\u0000``\u007F`.

_Unicode escapes_ are used to represent the Unicode character with the given hexadecimal code:

```ebnf
UnicodeEscape ::= ‘\’ u {u} hexDigit hexDigit hexDigit hexDigit
hexDigit      ::= ‘0’ |  | ‘9’ | A |  | F | a |  | f
```

## Lexical Syntax

The lexical syntax of Scala is given by the following grammar in EBNF form:

```ebnf
whiteSpace       ::=  ‘\u0020 | ‘\u0009 | ‘\u000D | ‘\u000A
upper            ::=  A |  | Z | ‘\$’ | ‘_’  // and Unicode category Lu
lower            ::=  a |  | z // and Unicode category Ll
letter           ::=  upper | lower // and Unicode categories Lo, Lt, Nl
digit            ::=  ‘0’ |  | ‘9’
paren            ::=  ( | ) | [ | ] | { | }
delim            ::=  ‘`’ | '’ | ‘"’ | ‘.’ | ‘;’ | ‘,’
opchar           ::= // printableChar not matched by (whiteSpace | upper | lower |
                     // letter | digit | paren | delim | opchar | Unicode_Sm | Unicode_So)
printableChar    ::= // all characters in [\u0020, \u007F] inclusive
charEscapeSeq    ::= ‘\’ (‘b’ | ‘t’ | ‘n’ | ‘f’ | ‘r’ | ‘"’ | ‘' | ‘\’)

op               ::=  opchar {opchar}
varid            ::=  lower idrest
plainid          ::=  upper idrest
                 |  varid
                 |  op
id               ::=  plainid
                 |  ‘`’ { charNoBackQuoteOrNewline | UnicodeEscape | charEscapeSeq } ‘`’
idrest           ::=  {letter | digit} [‘_’ op]

integerLiteral   ::=  (decimalNumeral | hexNumeral) [L | l]
decimalNumeral   ::=  ‘0’ | nonZeroDigit {digit}
hexNumeral       ::=  ‘0’ (x | X) hexDigit {hexDigit}
digit            ::=  ‘0’ | nonZeroDigit
nonZeroDigit     ::=  ‘1’ |  | ‘9’

floatingPointLiteral
                 ::=  digit {digit} . digit {digit} [exponentPart] [floatType]
                 |  ‘.’ digit {digit} [exponentPart] [floatType]
                 |  digit {digit} exponentPart [floatType]
                 |  digit {digit} [exponentPart] floatType
exponentPart     ::=  (E | e) [‘+’ | -] digit {digit}
floatType        ::=  F | f | D | d

booleanLiteral   ::=  true | false

characterLiteral ::=  '’ (charNoQuoteOrNewline | UnicodeEscape | charEscapeSeq) ‘'

stringLiteral    ::=  "’ {stringElement} ‘"
                 |  """’ multiLineChars ‘"""
stringElement    ::=  charNoDoubleQuoteOrNewline
                 |  UnicodeEscape
                 |  charEscapeSeq
multiLineChars   ::=  {["’] [‘"] charNoDoubleQuote} {‘"’}

symbolLiteral    ::=  ‘'’ plainid

comment          ::=  ‘/*’ any sequence of characters; nested comments are allowed ‘*/’
                 |  ‘//’ any sequence of characters up to end of line

nl               ::=  $\mathit{new line character}$
semi             ::=  ; |  nl {nl}
```

## Context-free Syntax

The context-free syntax of Scala is given by the following EBNF
grammar:

```ebnf
  Literal           ::=  [-] integerLiteral
                      |  [-] floatingPointLiteral
                      |  booleanLiteral
                      |  characterLiteral
                      |  stringLiteral
                      |  symbolLiteral
                      |  null

  QualId            ::=  id {. id}
  ids               ::=  id {, id}

  Path              ::=  StableId
                      |  [id .’] this
  StableId          ::=  id
                      |  Path . id
                      |  [id ‘.’] super [ClassQualifier] ‘.’ id
  ClassQualifier    ::=  [ id ]

  Type              ::=  FunctionArgTypes ‘=>’ Type
                      |  InfixType [ExistentialClause]
  FunctionArgTypes  ::= InfixType
                      | ( [ ParamType {, ParamType } ] )
  ExistentialClause ::=  forSome { ExistentialDcl {semi ExistentialDcl} }
  ExistentialDcl    ::=  type TypeDcl
                      |  val ValDcl
  InfixType         ::=  CompoundType {id [nl] CompoundType}
  CompoundType      ::=  AnnotType {with AnnotType} [Refinement]
                      |  Refinement
  AnnotType         ::=  SimpleType {Annotation}
  SimpleType        ::=  SimpleType TypeArgs
                      |  SimpleType ‘#’ id
                      |  StableId
                      |  Path . type
                      |  ‘(’ Types ‘)’
  TypeArgs          ::=  [ Types ]
  Types             ::=  Type {, Type}
  Refinement        ::=  [nl] { RefineStat {semi RefineStat} }
  RefineStat        ::=  Dcl
                      |  type TypeDef
                      |
  TypePat           ::=  Type

  Ascription        ::=  ‘:’ InfixType
                      |  ‘:’ Annotation {Annotation}
                      |  ‘:’ ‘_’ ‘*’

  Expr              ::=  (Bindings | [implicit] id | ‘_’) ‘=>’ Expr
                      |  Expr1
  Expr1             ::=  if ( Expr ) {nl} Expr [[semi] else Expr]
                      |  while ( Expr ) {nl} Expr
                      |  try ({ Block } | Expr) [catch { CaseClauses }] [finally Expr]
                      |  do Expr [semi] while ( Expr )
                      |  for (( Enumerators ) | { Enumerators }) {nl} [yield] Expr
                      |  throw Expr
                      |  return [Expr]
                      |  [SimpleExpr .’] id = Expr
                      |  SimpleExpr1 ArgumentExprs ‘=’ Expr
                      |  PostfixExpr
                      |  PostfixExpr Ascription
                      |  PostfixExpr match { CaseClauses }
  PostfixExpr       ::=  InfixExpr [id [nl]]
  InfixExpr         ::=  PrefixExpr
                      |  InfixExpr id [nl] InfixExpr
  PrefixExpr        ::=  [- | ‘+’ | ‘~’ | ‘!’] SimpleExpr
  SimpleExpr        ::=  new (ClassTemplate | TemplateBody)
                      |  BlockExpr
                      |  SimpleExpr1 [‘_’]
  SimpleExpr1       ::=  Literal
                      |  Path
                      |  ‘_’
                      |  ( [Exprs] )
                      |  SimpleExpr . id
                      |  SimpleExpr TypeArgs
                      |  SimpleExpr1 ArgumentExprs
                      |  XmlExpr
  Exprs             ::=  Expr {, Expr}
  ArgumentExprs     ::=  ( [Exprs] )
                      |  ( [Exprs ,] PostfixExpr ‘:’ ‘_’ ‘*’ )
                      |  [nl] BlockExpr
  BlockExpr         ::=  { CaseClauses }
                      |  { Block }
  Block             ::=  BlockStat {semi BlockStat} [ResultExpr]
  BlockStat         ::=  Import
                      |  {Annotation} [implicit | lazy] Def
                      |  {Annotation} {LocalModifier} TmplDef
                      |  Expr1
                      |
  ResultExpr        ::=  Expr1
                      |  (Bindings | ([implicit] id | ‘_’) ‘:’ CompoundType) ‘=>’ Block

  Enumerators       ::=  Generator {semi Generator}
  Generator         ::=  Pattern1 ‘<- Expr {[semi] Guard | semi Pattern1 ‘=’ Expr}

  CaseClauses       ::=  CaseClause { CaseClause }
  CaseClause        ::=  case Pattern [Guard] ‘=>’ Block
  Guard             ::=  if PostfixExpr

  Pattern           ::=  Pattern1 { | Pattern1 }
  Pattern1          ::=  varid ‘:’ TypePat
                      |  ‘_’ ‘:’ TypePat
                      |  Pattern2
  Pattern2          ::=  varid [‘@’ Pattern3]
                      |  Pattern3
  Pattern3          ::=  SimplePattern
                      |  SimplePattern { id [nl] SimplePattern }
  SimplePattern     ::=  ‘_’
                      |  varid
                      |  Literal
                      |  StableId
                      |  StableId ( [Patterns] )
                      |  StableId ( [Patterns ,] [varid ‘@’] ‘_’ ‘*’ )
                      |  ( [Patterns] )
                      |  XmlPattern
  Patterns          ::=  Pattern [, Patterns]
                      |  ‘_’ ‘*’

  TypeParamClause   ::=  [ VariantTypeParam {, VariantTypeParam} ]
  FunTypeParamClause::=  [ TypeParam {, TypeParam} ]
  VariantTypeParam  ::=  {Annotation} [‘+’ | -] TypeParam
  TypeParam         ::=  (id | ‘_’) [TypeParamClause] [‘>:’ Type] [‘<:’ Type]
                         {‘<%’ Type} {‘:’ Type}
  ParamClauses      ::=  {ParamClause} [[nl] ( implicit Params )]
  ParamClause       ::=  [nl] ( [Params] )
  Params            ::=  Param {, Param}
  Param             ::=  {Annotation} id [‘:’ ParamType] [‘=’ Expr]
  ParamType         ::=  Type
                      |  ‘=>’ Type
                      |  Type ‘*’
  ClassParamClauses ::=  {ClassParamClause}
                         [[nl] ( implicit ClassParams )]
  ClassParamClause  ::=  [nl] ( [ClassParams] )
  ClassParams       ::=  ClassParam {, ClassParam}
  ClassParam        ::=  {Annotation} {Modifier} [(val | var)]
                         id ‘:’ ParamType [‘=’ Expr]
  Bindings          ::=  ( Binding {, Binding} )
  Binding           ::=  (id | ‘_’) [‘:’ Type]

  Modifier          ::=  LocalModifier
                      |  AccessModifier
                      |  override
  LocalModifier     ::=  abstract
                      |  final
                      |  sealed
                      |  implicit
                      |  lazy
  AccessModifier    ::=  (private | protected) [AccessQualifier]
  AccessQualifier   ::=  [ (id | this) ]

  Annotation        ::=  ‘@’ SimpleType {ArgumentExprs}
  ConstrAnnotation  ::=  ‘@’ SimpleType ArgumentExprs

  TemplateBody      ::=  [nl] { [SelfType] TemplateStat {semi TemplateStat} }
  TemplateStat      ::=  Import
                      |  {Annotation [nl]} {Modifier} Def
                      |  {Annotation [nl]} {Modifier} Dcl
                      |  Expr
                      |
  SelfType          ::=  id [‘:’ Type] ‘=>’
                      |  this ‘:’ Type ‘=>’

  Import            ::=  import ImportExpr {, ImportExpr}
  ImportExpr        ::=  StableId . (id | ‘_’ | ImportSelectors)
  ImportSelectors   ::=  { {ImportSelector ,} (ImportSelector | ‘_’) }
  ImportSelector    ::=  id [‘=>’ id | ‘=>’ ‘_’]

  Dcl               ::=  val ValDcl
                      |  var VarDcl
                      |  def FunDcl
                      |  type {nl} TypeDcl

  ValDcl            ::=  ids ‘:’ Type
  VarDcl            ::=  ids ‘:’ Type
  FunDcl            ::=  FunSig [‘:’ Type]
  FunSig            ::=  id [FunTypeParamClause] ParamClauses
  TypeDcl           ::=  id [TypeParamClause] [‘>:’ Type] [‘<:’ Type]

  PatVarDef         ::=  val PatDef
                      |  var VarDef
  Def               ::=  PatVarDef
                      |  def FunDef
                      |  type {nl} TypeDef
                      |  TmplDef
  PatDef            ::=  Pattern2 {, Pattern2} [‘:’ Type] ‘=’ Expr
  VarDef            ::=  PatDef
                      |  ids ‘:’ Type ‘=’ ‘_’
  FunDef            ::=  FunSig [‘:’ Type] ‘=’ Expr
                      |  FunSig [nl] { Block }
                      |  this ParamClause ParamClauses
                         (‘=’ ConstrExpr | [nl] ConstrBlock)
  TypeDef           ::=  id [TypeParamClause] ‘=’ Type

  TmplDef           ::=  [case] class ClassDef
                      |  [case] object ObjectDef
                      |  trait TraitDef
  ClassDef          ::=  id [TypeParamClause] {ConstrAnnotation} [AccessModifier]
                         ClassParamClauses ClassTemplateOpt
  TraitDef          ::=  id [TypeParamClause] TraitTemplateOpt
  ObjectDef         ::=  id ClassTemplateOpt
  ClassTemplateOpt  ::=  extends ClassTemplate | [[extends] TemplateBody]
  TraitTemplateOpt  ::=  extends TraitTemplate | [[extends] TemplateBody]
  ClassTemplate     ::=  [EarlyDefs] ClassParents [TemplateBody]
  TraitTemplate     ::=  [EarlyDefs] TraitParents [TemplateBody]
  ClassParents      ::=  Constr {with AnnotType}
  TraitParents      ::=  AnnotType {with AnnotType}
  Constr            ::=  AnnotType {ArgumentExprs}
  EarlyDefs         ::= { [EarlyDef {semi EarlyDef}] } with
  EarlyDef          ::=  {Annotation [nl]} {Modifier} PatVarDef

  ConstrExpr        ::=  SelfInvocation
                      |  ConstrBlock
  ConstrBlock       ::=  { SelfInvocation {semi BlockStat} }
  SelfInvocation    ::=  this ArgumentExprs {ArgumentExprs}

  TopStatSeq        ::=  TopStat {semi TopStat}
  TopStat           ::=  {Annotation [nl]} {Modifier} TmplDef
                      |  Import
                      |  Packaging
                      |  PackageObject
                      |
  Packaging         ::=  package QualId [nl] { TopStatSeq }
  PackageObject     ::=  package object ObjectDef

  CompilationUnit   ::=  {package QualId semi} TopStatSeq
```

<!-- TODO add:
SeqPattern ::= ...

SimplePattern    ::= StableId  [TypePatArgs] [‘(’ [SeqPatterns] ‘)’]
TypePatArgs ::= ‘[’ TypePatArg {‘,’ TypePatArg} ‘]’
TypePatArg    ::=  ‘_’ |   varid}

-->