Tagged Questions

7
votes
7answers
898 views

Are there constants in Javascript?

If not, what's the common practice for specifying variables that are used as constants?
5
votes
5answers
222 views

JavaScript equivalent of Python’s __setitem__

var obj = {} obj.__setitem__ = function(key, value){ this[key] = value * value } obj.x = 2 // 4 obj.y = 3 // 9 JavaScript doesn't have __setitem__ and this example obviously …
3
votes
1answer
50 views

Converting a 64-bit long UTC timestamp into Actionscript Date

I'm using a Java 64-bit long representation of UTC time System.currentTimeInMillis() and sending that to an Actionscript client as a String, and I want to convert to an Actionscrip …
3
votes
5answers
95 views

Any examples of a non-trivial and useful example of the ‘with’ keyword?

I still find the with keyword a bit...enigmatic. Briefly, with behaves like this: with (obj) { // do stuff } This adds obj to the head of the scope chain and then execute …
2
votes
2answers
67 views

JavaScript Array reflection

how to loop through JavaScript Array member functions, the following code doesn't work :( for (var i in Array.prototype){ alert(i) } //show nothing for (var i in []){ ale …
2
votes
2answers
145 views

How to control indentation after an open parenthesis in Emacs

When I use emacs python-mode, if the last character of a line is an open parenthesis it indents the next line just one step in from the indentation of the previous line. call_some …
2
votes
2answers
659 views

What does Firebug “XML cannot be the whole program” error message mean?

I just got this error message in Firebug. A google search reveals nothing but other mystified people! Does anyone have any idea what it means? It's being indicated on the last lin …
1
vote
2answers
48 views

EBNF for ECMAScript?

I'm trying to find a good EBNF description of ECMAScript, but so far I've not found anything complete. Any ideas?
1
vote
4answers
95 views

ECMA Script/AS3 can’t do simple math! What gives?

Hey all, let's jump straight to a code sample to show how ECMAScript/Javascript/AS3 can't do simple math right (AS3 uses a 'IEEE-754 double-precision floating-point number' for the …
1
vote
4answers
177 views

ActionScript is like JavaScript?

I have a book, Essential ActionScript 3 (O'Reilly), to learn about using that language. It mentions that ActionScript 3 is an implementation of ECMAScript, just like Javascript. I …
0
votes
0answers
9 views

ANTLR parser hanging at proxy.handshake call

I am attempting to get a basic ECMAScript parser working, and found a complete ANTLR grammar for ECMAScript 3, which appears to compile ok and produces the appropriate Lexer/Parser …
0
votes
1answer
46 views

svg text element width

I'm working on some ecmascript/javascript for an svg file and need to get the width and height of a text element so I can resize a rectangle that surrounds it. In html I would be a …
0
votes
2answers
52 views

Is there a better C# ECMA script engine than ScriptControlClass?

Implementing the ScriptControlClass was extremely easy, unfortunately the side effects with the language implementation is really starting to worry me. The goal was to have a lan …