Index: src/func-name-inferrer.h |
diff --git a/src/func-name-inferrer.h b/src/func-name-inferrer.h |
index 0c5399c7bf1c10bfad14a0b86d7bf1e0f24da646..a590c4772d9dd0c0ab955a3aa330b2724a060e95 100644 |
--- a/src/func-name-inferrer.h |
+++ b/src/func-name-inferrer.h |
@@ -11,8 +11,9 @@ |
namespace v8 { |
namespace internal { |
+class AstString; |
+class AstValueFactory; |
class FunctionLiteral; |
-class Isolate; |
// FuncNameInferrer is a stateful class that is used to perform name |
// inference for anonymous functions during static analysis of source code. |
@@ -26,13 +27,13 @@ class Isolate; |
// a name. |
class FuncNameInferrer : public ZoneObject { |
public: |
- FuncNameInferrer(Isolate* isolate, Zone* zone); |
+ FuncNameInferrer(AstValueFactory* ast_value_factory, Zone* zone); |
// Returns whether we have entered name collection state. |
bool IsOpen() const { return !entries_stack_.is_empty(); } |
// Pushes an enclosing the name of enclosing function onto names stack. |
- void PushEnclosingName(Handle<String> name); |
+ void PushEnclosingName(const AstString* name); |
// Enters name collection state. |
void Enter() { |
@@ -40,9 +41,9 @@ class FuncNameInferrer : public ZoneObject { |
} |
// Pushes an encountered name onto names stack when in collection state. |
- void PushLiteralName(Handle<String> name); |
+ void PushLiteralName(const AstString* name); |
- void PushVariableName(Handle<String> name); |
+ void PushVariableName(const AstString* name); |
// Adds a function to infer name for. |
void AddFunction(FunctionLiteral* func_to_infer) { |
@@ -80,24 +81,20 @@ class FuncNameInferrer : public ZoneObject { |
kVariableName |
}; |
struct Name { |
- Name(Handle<String> name, NameType type) : name(name), type(type) { } |
- Handle<String> name; |
+ Name(const AstString* name, NameType type) : name(name), type(type) {} |
+ const AstString* name; |
NameType type; |
}; |
- Isolate* isolate() { return isolate_; } |
Zone* zone() const { return zone_; } |
// Constructs a full name in dotted notation from gathered names. |
- Handle<String> MakeNameFromStack(); |
- |
- // A helper function for MakeNameFromStack. |
- Handle<String> MakeNameFromStackHelper(int pos, Handle<String> prev); |
+ const AstString* MakeNameFromStack(); |
// Performs name inferring for added functions. |
void InferFunctionsNames(); |
- Isolate* isolate_; |
+ AstValueFactory* ast_value_factory_; |
ZoneList<int> entries_stack_; |
ZoneList<Name> names_stack_; |
ZoneList<FunctionLiteral*> funcs_to_infer_; |