| Index: runtime/vm/precompiler.h
|
| diff --git a/runtime/vm/precompiler.h b/runtime/vm/precompiler.h
|
| index fe7ec2da7308266d574e4eb6b59e8678e23fcaea..5a981a9a1d9feaf1d7c272e642c4b1f05ad6c2ea 100644
|
| --- a/runtime/vm/precompiler.h
|
| +++ b/runtime/vm/precompiler.h
|
| @@ -76,7 +76,7 @@ class FunctionKeyValueTrait {
|
| static Value ValueOf(Pair kv) { return kv; }
|
|
|
| static inline intptr_t Hashcode(Key key) {
|
| - return key->token_pos();
|
| + return key->token_pos().value();
|
| }
|
|
|
| static inline bool IsKeyEqual(Pair pair, Key key) {
|
| @@ -99,7 +99,7 @@ class FieldKeyValueTrait {
|
| static Value ValueOf(Pair kv) { return kv; }
|
|
|
| static inline intptr_t Hashcode(Key key) {
|
| - return key->token_pos();
|
| + return key->token_pos().value();
|
| }
|
|
|
| static inline bool IsKeyEqual(Pair pair, Key key) {
|
|
|