File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ protoc.Parser = class {
391
391
392
392
constructor ( text , file , root ) {
393
393
this . _context = root ;
394
- this . _tokenizer = new protoc . Parser . Tokenizer ( text , file ) ;
394
+ this . _tokenizer = new protoc . Tokenizer ( text , file ) ;
395
395
this . _head = true ;
396
396
this . _imports = [ ] ;
397
397
this . _weakImports = [ ] ;
@@ -922,7 +922,7 @@ protoc.Parser = class {
922
922
}
923
923
} ;
924
924
925
- protoc . Parser . Tokenizer = class {
925
+ protoc . Tokenizer = class {
926
926
927
927
constructor ( text , file ) {
928
928
this . _text = text ;
@@ -1087,7 +1087,7 @@ protoc.Parser.Tokenizer = class {
1087
1087
this . _position = re . lastIndex ;
1088
1088
this . push ( this . _delimiter ) ;
1089
1089
this . _delimiter = null ;
1090
- return protoc . Parser . Tokenizer . _unescape ( match [ 1 ] ) ;
1090
+ return protoc . Tokenizer . _unescape ( match [ 1 ] ) ;
1091
1091
}
1092
1092
1093
1093
_readError ( message ) {
You can’t perform that action at this time.
0 commit comments