@@ -205,7 +205,7 @@ let s:TOKEN_DOTDOTDOT = 63
205
205
let s: TOKEN_SHARP = 64
206
206
let s: TOKEN_ARROW = 65
207
207
let s: TOKEN_BLOB = 66
208
- let s: TOKEN_RAWCOPEN = 67
208
+ let s: TOKEN_LITCOPEN = 67
209
209
210
210
let s: MAX_FUNC_ARGS = 20
211
211
@@ -2757,7 +2757,7 @@ function! s:ExprTokenizer.get2()
2757
2757
elseif c == # ' #'
2758
2758
if r .p (1 ) == # ' {'
2759
2759
call r .seek_cur (2 )
2760
- return self .token (s: TOKEN_RAWCOPEN , ' #{' , pos)
2760
+ return self .token (s: TOKEN_LITCOPEN , ' #{' , pos)
2761
2761
else
2762
2762
call r .seek_cur (1 )
2763
2763
return self .token (s: TOKEN_SHARP , ' #' , pos)
@@ -3449,8 +3449,8 @@ function! s:ExprParser.parse_expr9()
3449
3449
endif
3450
3450
endwhile
3451
3451
endif
3452
- elseif token.type == s: TOKEN_COPEN || token.type == s: TOKEN_RAWCOPEN
3453
- let is_rawdict = token.type == s: TOKEN_RAWCOPEN
3452
+ elseif token.type == s: TOKEN_COPEN || token.type == s: TOKEN_LITCOPEN
3453
+ let is_litdict = token.type == s: TOKEN_LITCOPEN
3454
3454
let savepos = self .reader.tell ()
3455
3455
let nodepos = token.pos
3456
3456
let token = self .tokenizer.get ()
@@ -3538,7 +3538,7 @@ function! s:ExprParser.parse_expr9()
3538
3538
return node
3539
3539
endif
3540
3540
while 1
3541
- let key = is_rawdict ? self .parse_dict_literal_key () : self .parse_expr1 ()
3541
+ let key = is_litdict ? self .parse_dict_literal_key () : self .parse_expr1 ()
3542
3542
let token = self .tokenizer.get ()
3543
3543
if token.type == s: TOKEN_CCLOSE
3544
3544
if ! empty (node.value)
0 commit comments