Tagged Questions
The javascript-engine tag has no wiki summary.
26
votes
5answers
1k views
Why is new slow?
The benchmark:
JsPerf
The invariants:
var f = function() { };
var g = function() { return this; }
The tests:
Below in order of expected speed
new f;
g.call(Object.create(Object.prototype));
...
8
votes
8answers
3k views
Any Javascript Engine for .NET/C#?
I'm looking for an open source javascript engine for .NET. Thanks.
7
votes
1answer
392 views
Full callstack for multiple frames JS on IE8
I need to get a full call stack when an exception occurs in JavaScript on Internet Explorer 8. Function calls may occur between frames whose number is large.
Call stack necessary to send logs to the ...
6
votes
2answers
177 views
Does IE10 use JScript 10.0
@if (@_jscript_version == 10)
document.write("You are using IE10");
According to Wikipedia IE10 will use JScript 10.
JScript 10 seems to have a whole bunch of new proprietary extensions to ...
6
votes
1answer
221 views
What are Gecko's Javascript interpreter engine semantics?
Edit
In consideration of the answer response below regarding the
reference ECMAScript Language Specification - 11.13.2 Compound Assignment
Considering why these,
javascript:
o=""; o = o + ...
5
votes
6answers
143 views
Can IE interpret both JScript and JavaScript?
The window.setTimeout reference for IE states that setTimeout has an optional third parameter defining the language.
The possible languages are JScript, VBScript and JavaScript.
I already know IE ...
3
votes
2answers
507 views
PHP Headless Browser?
Is there a headless browser library for PHP? Would like something that has a JS engine built into it. FOSS preferred.
3
votes
3answers
606 views
String::New: what is it?
I am from a Java background and is learning C++. I encountered the following C++ code:
String source = String::New("'Hello' + ', World'");
As what I understand so far, this should be a call to ...
2
votes
1answer
73 views
iOS webapp performance safari vs home screen start
I read an article recently which states that web apps on iOS launched from the home screen running in full screen mode have slower performance than webapps running inside safari.
Then I found a ...
2
votes
1answer
544 views
How can I detect which javascript engine (v8 or JSC) is used at runtime in Android?
Newer versions of Android ( > 2.2) include the v8 javascript engine, while older versions only had JSC. However, according to ...
2
votes
1answer
90 views
Is it possible to use a change the Javascript engine a Cocoa WebView uses?
I'm working on a html/javascript + cocoa hybrid app. From what I can tell, Cocoa's WebView uses the same javascript engine as Safari (Nitro).
However, there's a couple of things in the V8 JS engine ...
2
votes
7answers
145 views
Is there a javaScript engine where I can run my code without being forced to use a browser?
Is there any way to write and run a JavaScript code without having a need to run a browser and use its JavaScript engine?
Thanks!
2
votes
2answers
187 views
Once again: How to get DOM in JavaScript Engine? Has this somebody done?
There are several questions and tips about getting the DOM into Spider-, Trace- or JaegerMonkey. But has anyone done this? Is somewhere out there a in C embedable working JS-Engine including the DOM? ...
2
votes
2answers
504 views
How to use V8's built in functions
I'm new in both javascript and V8. According to Google's Embedder's Guide, I saw something in the context section talking about built-in utility javascript functions. And I also found some .js ...
2
votes
8answers
302 views
Should I care about JavaScript engine speed when using jQuery?
I'm writing jQuery for a page that is a complex mess of many DOM elements (I have no control over this). The primary target browser is IE7, and I have concerns about the speed of its JavaScript ...
1
vote
0answers
11 views
Threading in Spidermonkey
I am trying to enable a threaded debug dump in SpiderMonkey, by
editing the jsinterp.cpp file. Basically, the things I am trying to do
are as follows:
Catch a JSScript before the main loop of ...
1
vote
1answer
85 views
Which JavaScript 2d engine for vertical scrolling game? [closed]
I need/want/have to write a simple game. It's basically about a person being dropped at great height, then falling and then he must avoid obstacles and shoot enemies.
I'm not yet quite sure whether ...
1
vote
1answer
120 views
Modifying V8 JavaScript Engine provided with Chrome
I want support for a new API that is normally not supported by V8 JS Engine provided with Chrome. Is it possible to do this by tweaking V8 provided with Chrome.
I'm open to using Spidermonkey which ...
1
vote
4answers
90 views
How can my HTML file pass JavaScript results back to a Python script that calls it?
I have a python script and this python script shall call an html-file (i.e. a web page) stored locally on the computer. The html-file does some calculations (jquery,javascript and so on) and should ...
1
vote
2answers
100 views
Use custom SpiderMonkey build with firefox 5
I am trying to build and use SpiderMonkey I compiled (for my academic research) with firefox 5 on a windows machine, but when I try to run firefox I get "missing JS_InitCTypesClass function in ...
1
vote
2answers
405 views
How do JavaScript interpreters/engines work?
I'm interested to find out how the JavaScript interpreter (engine if you like) works. I'm aware that JavaScript isn't compiled.I have looked at the ECMA specification, but it doesn't explain how the ...
1
vote
1answer
680 views
Is there a port of the Rhino JavaScript engine for .NET
I worked for a company that had both Java and .NET implementations of an application. The app allowed for end-user customization of processing and business rules using scripts. The Java version ...
0
votes
0answers
18 views
How to get access to IE javascript engine?
I want to write my own javascript debugger in the manner of smalltalk IDE. Thus I need access to javascript engine.
Is anyone knows ways to get access directly to IE jscript engine? Any links or ...
0
votes
1answer
76 views
javascript internals: how events are implemented?
My question is related to how the JS engines implement the pattern of asynchronous events when we do something like bind event handlers on a dom for lets say a click event.?
Do they have something ...
0
votes
1answer
78 views
Setting gem path from ScriptEngineManager eval method
Is it possible to set my jruby's gem path from the ScriptEngineManager in Java? The problem is that I'm using a compressed jruby interpreter (jruby-complete.jar) and it's not possible to get this ...
0
votes
0answers
85 views
How do I evaluate JavaScript before the browser does?
I am looking for a way to get javascript code before JaegerMonkey (Firefox JS engine) or V8 (Chrome JS engine) evaluate the it.
I don't mean capturing the traffic and get it before the application ...
0
votes
1answer
290 views
JavaScript Context in HttpClient
hi i need to Execute all the java Script on the page that i downloaded using HttpCleint Get method, which are the steps to perform the execution of the javascript containned on the page on the context ...
0
votes
1answer
225 views
SpiderMonkey JS Engine C Trouble
I'm a beginner at C and I was trying to use the SpiderMonkey JS Engine. I can't understand why it isn't working (the examples on mdc are not very helpfull)
#define XP_UNIX
#include <stdio.h>
...