Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: lib/compiler/implementation/scanner/keyword.dart

Issue 11191078: Make hashCode a getter and not a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * A keyword in the Dart programming language. 6 * A keyword in the Dart programming language.
7 */ 7 */
8 class Keyword implements SourceString { 8 class Keyword implements SourceString {
9 static const List<Keyword> values = const <Keyword> [ 9 static const List<Keyword> values = const <Keyword> [
10 const Keyword("assert"), 10 const Keyword("assert"),
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 PrecedenceInfo this.info: KEYWORD_INFO}); 87 PrecedenceInfo this.info: KEYWORD_INFO});
88 88
89 static Map<String, Keyword> computeKeywordMap() { 89 static Map<String, Keyword> computeKeywordMap() {
90 Map<String, Keyword> result = new LinkedHashMap<String, Keyword>(); 90 Map<String, Keyword> result = new LinkedHashMap<String, Keyword>();
91 for (Keyword keyword in values) { 91 for (Keyword keyword in values) {
92 result[keyword.syntax] = keyword; 92 result[keyword.syntax] = keyword;
93 } 93 }
94 return result; 94 return result;
95 } 95 }
96 96
97 int hashCode() => syntax.hashCode(); 97 int get hashCode => syntax.hashCode;
98 98
99 bool operator ==(other) { 99 bool operator ==(other) {
100 return other is SourceString && toString() == other.slowToString(); 100 return other is SourceString && toString() == other.slowToString();
101 } 101 }
102 102
103 Iterator<int> iterator() => new StringCodeIterator(syntax); 103 Iterator<int> iterator() => new StringCodeIterator(syntax);
104 104
105 void printOn(StringBuffer sb) { 105 void printOn(StringBuffer sb) {
106 sb.add(syntax); 106 sb.add(syntax);
107 } 107 }
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 final Keyword keyword; 222 final Keyword keyword;
223 223
224 LeafKeywordState(String syntax) : keyword = Keyword.keywords[syntax]; 224 LeafKeywordState(String syntax) : keyword = Keyword.keywords[syntax];
225 225
226 bool isLeaf() => true; 226 bool isLeaf() => true;
227 227
228 KeywordState next(int c) => null; 228 KeywordState next(int c) => null;
229 229
230 String toString() => keyword.syntax; 230 String toString() => keyword.syntax;
231 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698