Chromium Code Reviews| Index: src/globals.h |
| diff --git a/src/globals.h b/src/globals.h |
| index dd49ef3b17fcf8c5d55df5ad689d887cfdeb60dc..f226774240e24d585267203cb5a6bc376d2cc225 100644 |
| --- a/src/globals.h |
| +++ b/src/globals.h |
| @@ -651,7 +651,7 @@ enum ScopeType { |
| EVAL_SCOPE, // The top-level scope for an eval source. |
| FUNCTION_SCOPE, // The top-level scope for a function. |
| MODULE_SCOPE, // The scope introduced by a module literal |
| - GLOBAL_SCOPE, // The top-level scope for a program or a top-level eval. |
| + SCRIPT_SCOPE, // The top-level scope for a program or a top-level eval. |
|
rossberg
2014/11/12 09:49:27
Nit: s/program/script/
Dmitry Lomov (no reviews)
2014/11/12 10:16:26
Done.
|
| CATCH_SCOPE, // The scope introduced by catch. |
| BLOCK_SCOPE, // The scope introduced by a new block. |
| WITH_SCOPE, // The scope introduced by with. |