Example #1
0
        public static void ExportModule(JSContext context)
        {
            if (context == null)
                throw new ArgumentNullException ("context");

            SCNExportJavaScriptModule (context.Handle);
        }
Example #2
0
 public static JSValue From(string value, JSContext context)
 {
     using (var str = new NSString (value)) {
         return From ((NSObject)str, context);
     }
 }