Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: sky/engine/bindings/core/v8/V8ScriptRunner.h

Issue 688033003: Fix line numbers in JavaScript stack traces (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Remove unnecessary Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/bindings/core/v8/V8PerContextData.cpp ('k') | sky/engine/bindings/core/v8/V8ScriptRunner.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/core/v8/V8ScriptRunner.h
diff --git a/sky/engine/bindings/core/v8/V8ScriptRunner.h b/sky/engine/bindings/core/v8/V8ScriptRunner.h
index 3c02058fa7671db422ce3104f4981db3bc6b517c..1e4a1857fe116b0c45430b5ed76284b712f99b3d 100644
--- a/sky/engine/bindings/core/v8/V8ScriptRunner.h
+++ b/sky/engine/bindings/core/v8/V8ScriptRunner.h
@@ -38,8 +38,11 @@ class ScriptSourceCode;
class ExecutionContext;
struct V8ScriptModule {
+ String resourceName;
+ TextPosition textPosition;
v8::Handle<v8::Value> receiver;
- Vector<v8::Handle<v8::Value> > formalDependenciesAndSource;
+ String source;
+ Vector<String> formalDependencies;
Vector<v8::Handle<v8::Value> > resolvedDependencies;
};
« no previous file with comments | « sky/engine/bindings/core/v8/V8PerContextData.cpp ('k') | sky/engine/bindings/core/v8/V8ScriptRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698