1
1
/*
2
- * Copyright (c) 1999, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1999, 2021 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
25
25
26
26
package com .sun .tools .javac .parser ;
27
27
28
+ import java .util .HashMap ;
28
29
import java .util .Locale ;
30
+ import java .util .Map ;
29
31
30
32
import com .sun .tools .javac .api .Formattable ;
31
33
import com .sun .tools .javac .api .Messages ;
32
34
import com .sun .tools .javac .parser .Tokens .Token .Tag ;
33
- import com .sun .tools .javac .util .List ;
34
- import com .sun .tools .javac .util .Name ;
35
- import com .sun .tools .javac .util .Context ;
36
- import com .sun .tools .javac .util .Filter ;
37
- import com .sun .tools .javac .util .ListBuffer ;
38
- import com .sun .tools .javac .util .Names ;
35
+ import com .sun .tools .javac .util .*;
39
36
40
37
/** A class that defines codes/utilities for Java source tokens
41
38
* returned from lexical analysis.
@@ -52,15 +49,7 @@ public class Tokens {
52
49
/**
53
50
* Keyword array. Maps name indices to Token.
54
51
*/
55
- private final TokenKind [] key ;
56
-
57
- /** The number of the last entered keyword.
58
- */
59
- private int maxKey = 0 ;
60
-
61
- /** The names of all tokens.
62
- */
63
- private Name [] tokenName = new Name [TokenKind .values ().length ];
52
+ private Map <String , TokenKind > keywords = new HashMap <>();
64
53
65
54
public static final Context .Key <Tokens > tokensKey = new Context .Key <>();
66
55
@@ -75,37 +64,26 @@ protected Tokens(Context context) {
75
64
context .put (tokensKey , this );
76
65
names = Names .instance (context );
77
66
for (TokenKind t : TokenKind .values ()) {
78
- if (t .name != null )
79
- enterKeyword (t .name , t );
80
- else
81
- tokenName [t .ordinal ()] = null ;
82
- }
83
-
84
- key = new TokenKind [maxKey +1 ];
85
- for (int i = 0 ; i <= maxKey ; i ++) key [i ] = TokenKind .IDENTIFIER ;
86
- for (TokenKind t : TokenKind .values ()) {
87
- if (t .name != null )
88
- key [tokenName [t .ordinal ()].getIndex ()] = t ;
67
+ if (t .name != null ) {
68
+ names .fromString (t .name );
69
+ keywords .put (t .name , t );
70
+ }
89
71
}
90
72
}
91
73
92
- private void enterKeyword (String s , TokenKind token ) {
93
- Name n = names .fromString (s );
94
- tokenName [token .ordinal ()] = n ;
95
- if (n .getIndex () > maxKey ) maxKey = n .getIndex ();
96
- }
97
-
98
74
/**
99
75
* Create a new token given a name; if the name corresponds to a token name,
100
76
* a new token of the corresponding kind is returned; otherwise, an
101
77
* identifier token is returned.
102
78
*/
103
79
TokenKind lookupKind (Name name ) {
104
- return (name .getIndex () > maxKey ) ? TokenKind .IDENTIFIER : key [name .getIndex ()];
80
+ TokenKind t = keywords .get (name .toString ());
81
+ return (t != null ) ? t : TokenKind .IDENTIFIER ;
105
82
}
106
83
107
84
TokenKind lookupKind (String name ) {
108
- return lookupKind (names .fromString (name ));
85
+ TokenKind t = keywords .get (name );
86
+ return (t != null ) ? t : TokenKind .IDENTIFIER ;
109
87
}
110
88
111
89
/**
0 commit comments