summaryrefslogtreecommitdiffstats
path: root/core/JMXScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/JMXScript.h')
-rw-r--r--core/JMXScript.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/JMXScript.h b/core/JMXScript.h
index b34ce0c..e67d6c6 100644
--- a/core/JMXScript.h
+++ b/core/JMXScript.h
@@ -114,13 +114,13 @@
@method execCode:
@abstract Interpret and exec the provided javascript code in this JS Context
*/
-- (void)execCode:(NSString *)code;
+- (BOOL)execCode:(NSString *)code;
/*!
@method execFunction:
@abstract exec the provided javascript function in this JS context
*/
-- (void)execFunction:(v8::Handle<v8::Function>)function;
+- (BOOL)execFunction:(v8::Handle<v8::Function>)function;
/*!
@method execFunction:WithArguments:count