ECMA-262 is a Standard defining the ECMAScript scripting language also known as JavaScript.
0
votes
1answer
70 views
Why is the dollar sign no longer “intended for use only in mechanically generated code?”
In ECMA-262, 3rd edition[PDF], under section 7.6 ("Identifiers," page 26), we see the following note:
The dollar sign is intended for use only in mechanically generated code.
That seems ...
1
vote
2answers
24 views
How does the ECMA Script 5 spec allow successful parses for hex ints greater than 0xFF?
In EMCA262 version 5.1 the definition of a hexadecimal integer literal is: (document page 20, PDF page 32)
HexIntegerLiteral ::
0xHexDigit
...
0
votes
1answer
16 views
how to generate a vxml tag through adynamic ecma/javascript expression
I am having issues with the following scenario:
my vxml has the following snippet:
<block>
<script src="myscript.es"/>
<audio> <value expr="temp()"/> </audio>
...
5
votes
1answer
125 views
When did all browsers start supporting the String.replace(regexp, replacement_function)?
According to the 6th Edition of JavaScript: The Definitive Guide (Flanagan, 2011):
ECMAScript v3 specifies that the replacement argument to replace() may be a function instead of a string.
I'm ...
0
votes
0answers
39 views
enumeration order guarantee
On my EcmaScript spec. wishlist the first in order of importance is the guaranteed order of enumeration in for-in loops.
A bunch of very smart people vote for for-in enumeration order guarantee ...
0
votes
1answer
67 views
argumental reference inconsistency in javascript
I have recently encountered a nasty issue in JS.
Let say we pass a map, an array of objects to a function f.
var o=[{a:0}];
function f(a){
for(var i in a){
if (a.hasOwnProperty(i)){
...
1
vote
3answers
51 views
In JavaScript, will any standalone inner function treat “this” as the object on which the original method was invoked on?
In the book JavaScript Enlightenment (the link is to a pre-published version (page 85), but I have the published version (Chapter 6.3) and it says the same thing), it says that any inner function will ...
0
votes
1answer
33 views
very backwards compatible .every function
I'm implementing the .every function on an array. I'm in an old javascript engine environment and the function below didn't make the compiler too happy (Rhino). The version of javascript is ECMA 262 ...
5
votes
2answers
308 views
Why are anonymous function expressions and named function expressions initialized so differently?
I'm looking at section 13 or the ECMAScript specification (v. 5). An anonymous function expression is initialized as follows:
Return the result of creating a new Function object as specified in ...
2
votes
2answers
34 views
Details about what happens when entering a function declared in the global scope is missing from ECMAScript Specification v5?
The ECMAScript specification goes into detail about what happens when control enters the execution context of a function within a function.
function foo() {
function bar() {
}
bar(); // ...
2
votes
1answer
74 views
JavaScript Closures - Using the ECMA Spec, please explain how the closure is created and maintained
I'm reading about JavaScript closures. I'm familiar with Execution Contexts, how the Lexical Environment is maintained, and very familiar with Lexical Scoping.
I want to know how closures in ...
2
votes
2answers
37 views
Are all function declarations & expressions created by called new Function() behind the scenes?
I'm reading the portion of ECMA 262 v5 script that speaks of Function definitions. For both function declarations and function expressions, the following is mentioned:
Return the result of ...
1
vote
1answer
64 views
Does Eval really introduce dynamic scoping to JavaScript?
People say that Eval brings dynamic scope into JavaScript, but I don't see how that statement is valid. Using Eval evaluates the expression using the same lexical environment/variable environment as ...
4
votes
3answers
67 views
Does a function expression have its own scope/lexical environment
I'm reading the Execution Context / Lexical Environment section of the ECMA 262 5 specification. It states the following: (emphasis added)
A Lexical Environment is a specification type used to ...
2
votes
2answers
51 views
Clarity on the difference between “LexicalEnvironment” and “VariableEnvironment” in ECMAScript/JavaScript
Could someone clarify what the difference is between these two, as they exist in the Execution context? It's hard for me to read the ECMA 262 v 5 specification and clearly see the difference.
Thank ...
8
votes
2answers
201 views
Is there an i18n (Intl) shim for JavaScript?
I am looking for a shim for the ECMAScript Internationalization API. Does anyone know of such a project? (Even if it's still currently a work-in-progress.)
3
votes
1answer
219 views
Math.pow with negative numbers and non-integer powers
The ECMAScript specification for Math.pow has the following peculiar rule:
If x < 0 and x is finite and y is finite and y is not an integer, the result is NaN.
...
1
vote
2answers
68 views
Primitive wrapper behavior in JavaScript
In the book Professional Javascript for Web Developers i read that primitive wrappers are used internally by JavaScript when trying to access properties and methods of primitive objects. Does that ...
2
votes
1answer
87 views
Authoritative JavaScript validation to a standard
I am trying to validate the JavaScript on my website. The scripts do not throw any errors and run fine on Chrome and Firefox (latest stable version). However, the animated parts absolutely do not work ...
1
vote
1answer
65 views
Can new keywords be added to Javascript?
From what I understand, the answer is "yes." But assuming that's true, how is it possible?
Wouldn't it violate the WHATWG's design principle #2.1? I mean, let's assume that the keyword foo was added ...
5
votes
2answers
112 views
How does time slicing happen in javascript?
or ecmascript but i wonder if how it actually happens depends more on the exact implimentation.
javascript is technically single threaded.
but if i do something like
$myDIv.animate({
...
1
vote
3answers
105 views
Writing ECMAScript5 compliant code (Part 2)
I am currently learning advanced JavaScript, with an aim to build a standards compliant (HTML5, CSS3, ESv5) library. Along my way I have already asked a couple of related questions to try and figure ...
1
vote
0answers
63 views
Is there any benefit to using prototype instead of declaring properties on the object itself?
A prototype is used to declare properties and methods for a class of objects. One advantage of using prototype is that it conserves memory because all instances of a class point to the properties and ...
0
votes
1answer
71 views
Javascript assignment operator is not working
log.original_fields is always null. why?
var updateChangeLog = function(log, currentRecord) {
var records, record;
if(!log.original_fields) {
records = ["a","b"];
...
7
votes
3answers
492 views
Is there any way to check if strict mode is enforced?
Is there anyway to check if strict mode 'use strict' is enforced , and we want to execute different code for strict mode and other code for non-strict mode.
Looking for function like ...
7
votes
2answers
520 views
Getting a reference to the global object in an unknown environment in strict mode
What is the recommended way to get a handle to the global object in ES5 strict mode in an unknown host environment?
ECMAScript doesn't provide a built-in way to reference the global object that I'm ...
1
vote
2answers
194 views
Why JSON allows only string to be a key?
Why does JSON only allow a string to be a key of a pair? Why not other types such as null, number, bool, object, array? Considering JSON is tightly related with JavaScript, could I conclude the reason ...
3
votes
1answer
88 views
Are there any syntactic differences between ECMA-262 and ECMA-357?
I'm writing a JavaScript parser based on ECMA-262. I'd be interested to know how much I'd need to change to make it ECMA-357 compatible.
Are there any syntactic differences?
0
votes
1answer
53 views
Emulating ActionScript 3.0 / JavaScript DateTime in Java
I'm looking to port some DateTime functionality from ActionScript 3.0 over to Java/Android. I am currently looking at Joda. Before going with this option I wonder if there are actually any ...
26
votes
1answer
805 views
QtScript instanceof with custom class throws prototype-related error
I have a Qt project which uses the QtScript module to make some components of my application scriptable.
After several attempts at making the existing classes directly usable in QtScript, I chose to ...
7
votes
5answers
353 views
Is there an environment-agnostic way to detect Javascript Host Objects?
I'm writing a Javascript stacktrace library. The library needs to detect wether a particular object or function was created by the programmer or was there as part of the environment (including ...
3
votes
2answers
176 views
Which ECMA-262 (ECMAScript/JavaScript) reference should I use?
The more I read JavaScript Q&A, the more I come across references to the ECMA-262 sleeping medication reference. I've seen some as HTML in addition to the official pdf.
I'd like to link to the ...
0
votes
4answers
850 views
Use of reserved words in Javascript
In Javascript there are various reserved words that cannot be used inside Identifiers; some of those are actually reserved for future use. To clarify a bit, an Identifier is an Identifier Name but not ...
-2
votes
1answer
281 views
Gemfile.lock not checked in - Heroku × 45807
Get the same problem as in (7) and tried all the possible answers but still couldnt get any headway. I wish you could be of help (bearing in mind that i am a newbie please). Here is the description of ...
0
votes
0answers
333 views
Translating AS3-like code into JavaScript
For several days now I've been busy to create a ECMA-262, edition 3 compatible programming language which would be translated into object-oriented JavaScript. My goal is to make programming ...
3
votes
2answers
603 views
Differences between regular expressions in Java and ECMA-262 (AS, JS)
I need to convert Java regular expressions into Actionscript regular expressions.
There apparently aren't any premade converters, so I'm trying to write one myself. Is there any resource that'd list ...
5
votes
1answer
845 views
Activation and Variable Object in JavaScript?
Is the term "activation object" just another name of "variable object" or is there actually any difference between them? I have been reading a few JavaScript articles about how variable scopes are ...
2
votes
1answer
296 views
JavaScript Object property lookup - does syntax matter?
This is a basic question about the JavaScript (ECMAScript) language so I apologize in advance if it's a duplicate (a little searching didn't reveal my exact question).
In ECMAScript we can use two ...
4
votes
2answers
305 views
ECMAScript Associative Array via Object w/ prototype null?
I see a lot of people doing this
Object.prototype.foo = 'HALLO';
var hash = {baz: 'quuz'};
for ( var v in hash ) {
// Do not print property `foo`
if ( hash.hasOwnProperty(v) ) {
console.log( ...
12
votes
1answer
2k views
When will v8 implement ECMAScript 5?
I noticed that v8 is rather mute on the issue of ECMAScript 5th edition.
V8 implements ECMAScript as specified in ECMA-262, 3rd edition, and runs on Windows XP and Vista, Mac OS X 10.5 (Leopard), ...
0
votes
2answers
321 views
maintain text but eliminate CR LF between tags
Fellow Regexers,
I have a flat file full of expressions like:
SELECT * FROM CONVENIENT_ONE_LINE_QUERY
"SELECT * FROM THIS_QUERY
WHERE IS_SPREAD_OVER == 123
ORDER BY MULTIPLE_LINES
HAVING ...
9
votes
3answers
2k views
Can I disable ECMAscript strict mode for specific functions?
I don't find anything about my question here on MDC or the ECMAscript specifications. Probably somebody knows a more 'hacky' way to solve this.
I'm calling "use strict" on every javascript file in my ...
0
votes
3answers
408 views
DontDelete property of javascript objects
According to EcmaScript specification some objects properties cannot be deleted due to the DontDelete internal parameter. For example :
var y = 5
should not be deletable. But from what I was able to ...
0
votes
2answers
335 views
Can I target multiple objects with a single operation using ECMAScript's `with` statement?
The following doesn't work (although it gives no explicit error), but why not?
And... Is there really no way around it, strictly using the with statement? Forget using for / foreach.
with (object1, ...
0
votes
1answer
393 views
how to get object's [[DefaultValue]]
according to ecma262-3 8.6.2.6 [DefaultValue]
http://bclary.com/2004/11/07/#a-8.6.2.6
now i want to get the [[DefaultValue]] of [ ]
so according to ecma,like this:
When the [[DefaultValue]] method ...
27
votes
3answers
1k views
Is JavaScript's double equals (==) symmetric?
There are many cases in which JavaScript's type-coercing equality operator is not transitive. (See, for instance, JavaScript equality transitivity is weird....) But are there any cases in which it ...
1
vote
1answer
228 views
ECMA 262/Perl 5 regexp support in java
Are there any libraries that supports this regexp-specification in java?
Know the Mozilla Rhino uses this specification, but how can this be implemented in java?
UPDATE:
Found a library called ...
3
votes
2answers
314 views
Rhino features beyond the ECMA standard?
I'm starting with JavaScript and the Rhino engine. I know the ECMAScript 262 specification. I need to know what features, e.g. functions/objects/etc are defined by the Rhino JavaScript engine beyond ...
1
vote
1answer
857 views
What differences are between javascript in Firefox 4 and IE9
IE9 supports ecma-262 edition 5 (http://en.wikipedia.org/wiki/ECMAScript) and Firefox 4 is javascript 1.8.5 (https://developer.mozilla.org/en/JavaScript/New_in_JavaScript/1.8.5).
How compliant is IE9 ...
5
votes
3answers
843 views
JavaScript: Can ECMAScript 5's Strict Mode (“use strict”) be enabled using single quotes ('use strict')?
JavaScript doesn't care if your Strings are double-quoted "double" or single-quoted 'single'.
Every example of ECMAScript 5's strict mode has it enabled by "use strict" in double-quotes. Can I do the ...



