Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index e78844cf20c00bb7177dcbef38f15baa64908030..b1ff6c5f5ddaa386e2820310f818305d15d74cb2 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -529,7 +529,7 @@ enum VisitMode { |
}; |
// Flag indicating whether code is built into the VM (one of the natives files). |
-enum NativesFlag { NOT_NATIVES_CODE, NATIVES_CODE }; |
+enum NativesFlag { NOT_NATIVES_CODE, EXTENSION_CODE, NATIVES_CODE }; |
domenic
2016/02/05 19:00:27
Should it be EXTRAS_CODE?
|
// JavaScript defines two kinds of 'nil'. |
enum NilValue { kNullValue, kUndefinedValue }; |