We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01269e9 commit 0ef3584Copy full SHA for 0ef3584
src/dotty/tools/dotc/parsing/Tokens.scala
@@ -94,8 +94,8 @@ abstract class TokensCommon {
94
95
/** special symbols */
96
final val COMMA = 70; enter(COMMA, "','")
97
- final val SEMI = 71; enter(DOT, "'.'")
98
- final val DOT = 72; enter(SEMI, "';'")
+ final val SEMI = 71; enter(SEMI, "';'")
+ final val DOT = 72; enter(DOT, "'.'")
99
//final val NEWLINE = 78; enter(NEWLINE, "end of statement", "new line")
100
//final val NEWLINES = 79; enter(NEWLINES, "end of statement", "new lines")
101
0 commit comments