@@ -202,10 +202,9 @@ object Tokens extends TokensCommon {
202
202
inline val COLONeol = 89 ; enter(COLONeol , " :" , " : at eol" )
203
203
// A `:` recognized as starting an indentation block
204
204
inline val SELFARROW = 90 ; enter(SELFARROW , " =>" ) // reclassified ARROW following self-type
205
- inline val ARROWeol = 99 ; enter(ARROWeol , " =>" , " => at eol" ) // lambda ARROW at eol followed by indent
206
205
207
206
/** XML mode */
208
- inline val XMLSTART = 100 ; enter(XMLSTART , " $XMLSTART$<" ) // TODO: deprecate
207
+ inline val XMLSTART = 99 ; enter(XMLSTART , " $XMLSTART$<" ) // TODO: deprecate
209
208
210
209
final val alphaKeywords : TokenSet = tokenRange(IF , END )
211
210
final val symbolicKeywords : TokenSet = tokenRange(USCORE , CTXARROW )
@@ -283,7 +282,7 @@ object Tokens extends TokensCommon {
283
282
final val closingRegionTokens = BitSet (RBRACE , RPAREN , RBRACKET , CASE ) | statCtdTokens
284
283
285
284
final val canStartIndentTokens : BitSet =
286
- statCtdTokens | BitSet (COLONeol , WITH , EQUALS , ARROWeol , ARROW , CTXARROW , LARROW , WHILE , TRY , FOR , IF , THROW , RETURN )
285
+ statCtdTokens | BitSet (COLONeol , WITH , EQUALS , ARROW , CTXARROW , LARROW , WHILE , TRY , FOR , IF , THROW , RETURN )
287
286
288
287
/** Faced with the choice between a type and a formal parameter, the following
289
288
* tokens determine it's a formal parameter.
0 commit comments