Index: src/property.cc |
diff --git a/src/property.cc b/src/property.cc |
index 80a06cb7f588e16c0ee305ecde598acc5b9a7967..83a6a365b874675df7e58213f6049a23e8aef9e5 100644 |
--- a/src/property.cc |
+++ b/src/property.cc |
@@ -55,10 +55,10 @@ void LookupResult::Print(FILE* out) { |
PrintF(out, " -type = normal\n"); |
PrintF(out, " -entry = %d", GetDictionaryEntry()); |
break; |
- case CONSTANT_FUNCTION: |
- PrintF(out, " -type = constant function\n"); |
- PrintF(out, " -function:\n"); |
- GetConstantFunction()->Print(out); |
+ case CONSTANT: |
+ PrintF(out, " -type = constant\n"); |
+ PrintF(out, " -value:\n"); |
+ GetConstant()->Print(out); |
PrintF(out, "\n"); |
break; |
case FIELD: |
@@ -85,7 +85,7 @@ void LookupResult::Print(FILE* out) { |
GetTransitionMap()->Print(out); |
PrintF(out, "\n"); |
return; |
- case CONSTANT_FUNCTION: |
+ case CONSTANT: |
PrintF(out, " -type = constant property transition\n"); |
PrintF(out, " -map:\n"); |
GetTransitionMap()->Print(out); |