Index: src/messages.cc |
diff --git a/src/messages.cc b/src/messages.cc |
index 25753d247d19dd2395015776231e53764c0d14bc..b5150ef400eedbd07050e7ade6f5ce19bfa7bacb 100644 |
--- a/src/messages.cc |
+++ b/src/messages.cc |
@@ -21,11 +21,11 @@ MessageLocation::MessageLocation(Handle<Script> script, int start_pos, |
int end_pos) |
: script_(script), start_pos_(start_pos), end_pos_(end_pos) {} |
MessageLocation::MessageLocation(Handle<Script> script, int start_pos, |
- int end_pos, Handle<JSFunction> function) |
+ int end_pos, Handle<SharedFunctionInfo> shared) |
: script_(script), |
start_pos_(start_pos), |
end_pos_(end_pos), |
- function_(function) {} |
+ shared_(shared) {} |
MessageLocation::MessageLocation() : start_pos_(-1), end_pos_(-1) {} |
// If no message listeners have been registered this one is called |