SpiderMonkey is Mozilla's JavaScript Engine. A highly tailored version of which executes JavaScript in the Firefox web browser.
1
vote
1answer
29 views
Convert Xcode FAT static library to regular static library?
Gameclosure distrubutes precompiled SpiderMonkey for iOS. But the problem is that they use FAT static library. And the tools I am using on the JB iphone cannot recognize such a library.
FAT library ...
0
votes
1answer
10 views
How to precompile SpiderMonkey code for faster execution?
I am using code like this:
JS_EvaluateScript(context, global,"go_back('blabla')", 17, "", 1, &R);
to call go_back(), which is already in the context. But this is extremely slow, and I think ...
0
votes
1answer
37 views
How to use pyqt evaluate javascript
I am learning pyqt,use for parse webpage.
Now i want use pyqt evaluate javascript function just like this answer do:
spidermonkey evaluate js function which in remote js file
import urllib2
import ...
0
votes
1answer
29 views
Spidermonkey: implementing “this”?
I have spidermonkey setup to create objects from custom classes. For instance, in a script i can say...
var d0 = new MyDog();
...and on my app's C++ side a Dog object is created and stored.
What I ...
0
votes
1answer
62 views
Why to obfuscate a JavaScript code is a bad style?
I know, that in the society of the web-developers to use a minifying process for their JavaScript code representing as a well stuff. But if you want to obfuscate a JavaScript code, such an action will ...
0
votes
0answers
11 views
What is NSString internally?
Can I assign a char* or wchar_t* to the NSString and completely avoid copying some how?
I need to pass Unicode (utf16 LE) string from SpiderMonkey to UIView subclass, and my goal is to avoid copying ...
0
votes
2answers
58 views
Take user input with JavaScript in the console
I need to get user input when running a .js in a console with spidermonkey like this:
$ js myprogram.js
What's the JavaScript equivalent of Ruby's gets?
3
votes
1answer
50 views
How to get javascript caller source line number in SpiderMonkey JSNative callback?
I want to implement a C++ function working like console.log. I need to know javascript caller's source line position in C++. I search MDN JSAPI/JS Debugger API documents but no result.
A concept ...
6
votes
2answers
52 views
switch-case performance in ECMAscript
I'm using switch-case statements on regular bases in ECMAscript. Beside my personal endorsement about it, there is tons of specialist literature out, about performance in this language in general and ...
1
vote
0answers
103 views
Type of ajax response data (Spidermonkey vs V8)
I have noticed this while performing an Ajax request to Google Elevation service:
jQuery.ajax({
url: elevation_url,
method: "get",
async: false,
data: {
locations : ...
1
vote
0answers
130 views
Is it possible to run IE9 or IE10 Chakra JS engine standalone?
I need to run some benchmark tests on different JS engines, need to measure timing, CPU and memory usage. I'd like to run my tests from the commandline. Found some solutions for V8 and SpiderMonkey, ...
1
vote
3answers
134 views
Can javascript embedded in a C++ program faster than javascript on the web [closed]
I'm strictly a beginner with C++, but I was wondering if javascript (or Lua or any scripting language) running inside a C++ program is subject to the same kind of hardware acceleration that the C++ ...
0
votes
1answer
80 views
spidermonkey 1.8.5 crashes in debug mode
I am using Spidermonkey 1.8.5 in my application.
My application crashes when I use the debug JS library. I am building the library with the following options:
--enable-debug --disable-optimize ...
0
votes
1answer
54 views
Fast binary data exchange between JavaScript and C/C++ with SpiderMonkey JS engine
Recently I learned that there are "External Arrays" in V8. So when you embed V8 in your app, you can map your C-array to JS-array, and even choose a type, either it's char, word, int etc. This can ...
0
votes
0answers
48 views
Where can I download spidermonkey 1.8.5 precompiled static library for iOS?
Meeting the requirements to configure and then spend hours trying to fix issues while make I am trying to avoid.
0
votes
1answer
36 views
What does “defaults” contain?
I'm working with the Esprima parser, it outputs an AST format which is compatible with the Mozilla Spider Monkey Parser API.
In the Mozilla Docs, it specifies the Function node as:
interface ...
1
vote
1answer
26 views
Can spidermonkey be compiled without math support?
My libm does not have sin and cos functions.
Is there a configuration switch that enables me to compile spidermonkey without the Math.* function of JavaScript?
Regards
0
votes
0answers
45 views
How to parse Javascript text in C? [duplicate]
I have some Javascript text, but I have to parse it and get the output in C . I searched the net and found many JS Engine s but most of them were only for C++, like V8, Spidermonkey, etc.
Can you ...
0
votes
1answer
58 views
How to execute user defined javascript code using spidermonkey
I have the following javascript code as string
std::string script = " { function execute() { var x=10; return x; } } ";
I want to evaluate this script and return the value , is there any way to do ...
8
votes
4answers
312 views
Debug javascript using Eclipse
Ok, this is some question...well, I haven't seeing in any other place a question like this one...
I need to debug a javascript file through Eclipse (Helios)...but, that is not all, the javascript ...
0
votes
1answer
73 views
interrupt execution of v8 script inside native function
I use v8 and spidermonkey from C++ programs. In spidermonkey it is easy to stop the execution, you just return FALSE in any of native methods you implemented in C++.
But I fail to see how to do the ...
1
vote
1answer
77 views
SpiderMonkey and Unicode escapes: unexpected behavior
Does SpiderMonkey handle Unicode escapes properly? When I try to print a string with unicode escapes to standard out with SpiderMonkey, it munges them. V8 and Node.JS show output as expected.
Here's ...
0
votes
0answers
44 views
python-spidermonkey object has no attribute 'eval_script' error
Using python-spidermonkey in the following way (following the guide) gives me the error AttributeError: 'spidermonkey.Context' object has not attribute 'eval_script'.
>>> import ...
0
votes
1answer
146 views
Calling callback function in SpiderMonkey JS Enginge
I'm using SpiderMonkey JS Engine 1.8.5 API.
JS code looks like:
visitChildren(function() {
log("something");
});
VisitChildren is something ...
0
votes
1answer
63 views
How to introduce window and document objects into spidermonkey javascript shell?
I'm trying to build automated script testing engine using spidermonkey.
Some of the scripts I intend to test are using window and document objects, which are not defined in the js shell.
Is there an ...
2
votes
0answers
62 views
What is the best way to get and compare object identities?
I want to implement dictionary and set in GJS, but the only comparison operator available for Object is ===, so if I implement them in standard JavaScript they will be slow when Objects are used as ...
0
votes
2answers
390 views
Simulating clicking on a javascript link in python
I am trying to collate reviews of restaurants. Urllib2 works fine for the initial page of reviews, but there is then a link to load the next increment of comments which is a javascript link. An ...
2
votes
2answers
154 views
Is this JavaScript optimization or not? [closed]
Can someone explain me what are the differences between those two functions below?
I'm wondering if JavaScript engines do some kind of nano-optimizations here.
function withoutVar() { ...
6
votes
1answer
262 views
Program crashes if using JS_NewGlobalObject : SpiderMonkey
I am using the latest release of SpiderMonkey (js185-1.0.0.tar.gz) and when I am running the sample program which embeds Javascript, crashes the program
The sample program is directly from the docs
...
1
vote
0answers
133 views
Can I determine the JavaScript Engine from .js code?
Is there a way with the help of JavaScript code to know what JavaScript Engine is the one on which a snippet of code is run on?
I don't want to get the browser type just the JavaScript engine.
0
votes
1answer
90 views
Spidermonkey and getElementsByTagName
I'd like to have getElementsByTagName in a system that supports Spidermonkey. Where could I find source for that function or how can I get that functionality with Spidermonkey?
1
vote
1answer
83 views
Replicating for…in loop with SpiderMonkey public API
I am trying to probe some JavaScript in SpiderMonkey (the latest release version) with the public C JSAPI.
How do I replicate the behavior of the for...in loop with public JSAPI calls, such as ...
5
votes
0answers
344 views
Can I execute a Javascript function inside Spidermonkey and get the return value?
I'm just getting into using Delphi with Spidermonkey. Previously I would load a web page into a TWebBrowser component and interact with the Javascript code in the loaded web page. This was messy ...
1
vote
0answers
80 views
Spidermonkey dotnet build with --enable-trace-jscalls
I have a problem concerning spidermonkey dotnet - http://spidermonkeydotnet.codeplex.com/
Spidermonkey dotnet is a wrapper between Spidermonkey (JavaScript Engine - Mozilla) and C# ...
I want to use ...
1
vote
1answer
179 views
Clicking AJAX buttons on Facebook w/ mechanize and Python
So I've been trying to create a script that clears all my activity on Facebook by going to the activity log and clicking all the buttons to either delete, or if it can't hide, all posts. Mechanize ...
1
vote
1answer
119 views
Cross-browser key lookup performance in Javascript objects
I'm doing a data-intensive project in Javascript, where there are thousands of objects with short strings as "IDs" that need to be looked up efficiently by ID. My (possibly naive) approach was to ...
0
votes
1answer
165 views
When is a javascript engine (like Spidermonkey) going to build in a library like jquery, mootools, etc.. and how can anyone help this to come about?
We all know the great benefits that js libraries such as jquery and mootools etc. have contributed to web browsers and web development. These libraries are now included in a lot if not most of all ...
0
votes
0answers
141 views
Building Spidermonkey 1.8.5 C api on CentOS 3.9 (Final)
I was trying to build the spidermonkey api on CentOS 3.9 (Final), but without any luck. In the CentOS box
uname -a
Linux localhost.localdomain 2.4.21-50.ELsmp #1 SMP Mon Jun 11 17:39:21 EDT 2007 ...
2
votes
1answer
86 views
SpiderMonkey js shell won't bump bytecode?
I downloaded the nightly js-shell for mac from mozilla's ftp site.
If I run:
~/Downloads/jsshell-mac/js -D --execute="var a = '100'"
I assume I would get bytecode output. Instead, I get nothing.
...
3
votes
1answer
181 views
Is it more efficient to use a bunch of setTimeouts or a setInterval for refreshing a bunch of objects
Let's say there is a set of Watchers that need to be refreshed periodically. They each may have a different refresh interval. There may be several hundred such Watcher items at any given moment. The ...
0
votes
0answers
169 views
Fail to install spidermonkey for xampp in windows 7
i got this error when try to install spidermonkey dll for xampp
1. the procedure entry point zend_new_interned_string could not be located in the php5ts.dll
2. unable to load ...
-1
votes
1answer
653 views
Install PECL on windows 7
can someone in this universe give me the step by step to install PECL for windows on php server, so then i can use the SpiderMonkey js engine to run js within php code?
0
votes
1answer
120 views
SpiderMonkey garbage collector
If SM's GC is a conservative stack scanner, why is the example 3 "bad"? Why is "root as you go" necessary? The GC should scan the stack and observe that str1, str2 are roots, no?
0
votes
1answer
96 views
How to pass arguments to a script through the SpiderMonkey command-line?
I am using SpiderMonkey 1.8.5 on Debian.
I am starting a script through the command-line using
js -f <myScript>
I'd like to pass some arguments to my script, but I don't know how to do that. ...
1
vote
1answer
44 views
Is there something equivalent/similar to PyCapsule in SpiderMonkey?
When embedding Python there is the PyCapsule type to create an object containing a C pointer which cannot be modified from Python code, i.e. it's perfect to pass around stuff that is used only by the ...
0
votes
1answer
22 views
how to test jsengine in firefox with the affiliate js files in firefox source code?
I have built the spidermonkey from source successfully ,all that I am confused is how can I test its performance?
Fortunaly, I see many test js files in the /js/src/tests folder in FFsource code, so, ...
0
votes
1answer
223 views
Preventing Garbage Collection in the Spidermonkey Javascript Engine
According the Spidermonkey's User Guide
https://developer.mozilla.org/En/SpiderMonkey/JSAPI_User_Guide
... a jsval by itself does not protect its referent from the garbage
collector...
My ...
-1
votes
1answer
239 views
Get property name by id
I'm using this code to iterate over the properties passed to a native function:
JSObject *iter = JS_NewPropertyIterator(cx, jsargs);
jsid id;
while(JS_NextProperty(cx, iter, &id) && id != ...
0
votes
1answer
87 views
Meaning of `get functionname() {…}` within Javascript object
I've been looking over the GNOME shell javascript interface and noticed the following snippet (popupMenu.js for those who are interested) from the prototype of a class:
PopupSwitchMenuItem.prototype ...
4
votes
4answers
228 views
Is there an engine-agnostic Reflect.parse?
Mozilla have delivered an API for parsing a Javascript module to generate an abstract syntax tree. They call it Reflect.parse.
Is there a Reflect.parse, or something similar, written as a ...
