Changeset 15481 in webkit for trunk/JavaScriptCore/API/JSBase.cpp
- Timestamp:
- Jul 17, 2006, 1:14:39 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSBase.cpp
r15445 r15481 36 36 using namespace KJS; 37 37 38 JSValueRef JSEvaluateScript(JSContextRef c ontext, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception)38 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) 39 39 { 40 40 JSLock lock; 41 ExecState* exec = toJS(c ontext);41 ExecState* exec = toJS(ctx); 42 42 JSObject* jsThisObject = toJS(thisObject); 43 43 UString::Rep* scriptRep = toJS(script); … … 59 59 } 60 60 61 bool JSCheckScriptSyntax(JSContextRef c ontext, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception)61 bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) 62 62 { 63 63 JSLock lock; 64 64 65 ExecState* exec = toJS(c ontext);65 ExecState* exec = toJS(ctx); 66 66 UString::Rep* scriptRep = toJS(script); 67 67 UString::Rep* sourceURLRep = toJS(sourceURL); … … 76 76 } 77 77 78 void JSGarbageCollect( )78 void JSGarbageCollect(JSContextRef) 79 79 { 80 80 JSLock lock;
Note:
See TracChangeset
for help on using the changeset viewer.