Tagged Questions
The ecma tag has no wiki summary.
15
votes
4answers
555 views
Mono and patents
the currently ongoing flame wars on the subject Mono and patents I wanted a look behind the curtains and propaganda material from both sides, but this doesn't seem to be so easy.
What seems to be ...
11
votes
2answers
111 views
Can I use an empty string as an object identifier?
I've been tinkering with objects and seemingly you can have '' (an empty string) as a property name, like so:
o = {
'': 'hello',
1: 'world',
'abc': ':-)',
};
console.log(o['']);
...
5
votes
1answer
581 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), ...
3
votes
1answer
48 views
Does Ecma-334 have an incorrect description for next line (C# ECMA Standard)?
In Ecma-334 (C# Language Specification 4th Edition), Annex A. Grammar, Section A.1.1 Line terminators:
new-line::
Carriage return character (U+000D)
Line feed character (U+000A)
Carriage return ...
3
votes
3answers
65 views
Why are properties of an instance updated when the prototype is updated if the property has not been set by the instance itself?
Why are properties of an instance that store primitive values, not references, updated when the prototype is updated if the property has not been set by the instance itself?
Let me give an example:
...
3
votes
4answers
701 views
Multiple assignment in javascript?
For a project a developer sent us a .js file with code similar to this:
var myList = [1,2,3];
var a,b,c;
[a,b,c] = myList;
It works in Opera 10.30, Firefox 3.6.x but it's not ok for Opera 10.60 ...
2
votes
1answer
80 views
Understanding ECMAScript implicit semicolons and whitespace parsing
I've seen, very often in fact, this cited as why to use K&R style when writing ECMAScript.
function foo () {
return
{
foo: 1
}
;
}
That doesn't work in ECMAScript or ...
2
votes
1answer
51 views
What are the ISO 2375 and 2735 standards mentioned in the ECMA-119 specification?
Out of ECMA-119 specification:
8.5 Supplementary Volume Descriptor
...
8.5.3 Volume Flags (BP 8):
The bits of this field shall be numbered from 0 to 7 starting with the least ...
2
votes
1answer
38 views
Changing Render Kits in Browser
I'm working on a project to develop a cross-browser testing web app. Simply put, I'm tired of having to maintain multiple browsers on the same system and IE in VMware solely for the purpose of ...
2
votes
2answers
386 views
What is the difference between javascript and ecma script?
What would happen if I start to define my script tags as emca will it execute to a different standard?
Does anyone actually use ecma script instead of straight up javascipt...?
2
votes
2answers
89 views
How does one build Mono with only the ECMA covered parts?
I'm trying to figure out how to build Mono without the patented, non ECMA components, such as Winforms.
Miguel de Icaza said that Mono would be split in two, so that we could build only the parts ...
1
vote
3answers
101 views
Definitive list of JavaScript browser support
Is anyone aware of a definitive list of areas of missing support for ECMAScript/JavaScript in the major browsers (I'm talking IE7+, Firefox, Chrome, Safari and Opera).
Obviously we do feature ...
1
vote
1answer
172 views
Get subsites in Sharepoint ECMAScript
I'm trying to use ECMA script in Sharepoint to data on sites.
It's working well for the top root site when I'm using the SP.ClientContext.get_current() method, but I can't seem to get the subsites of ...
1
vote
1answer
98 views
Which JavaScript (ECMAScript) version does Java's Rhino implementation implement (and what's the update policy?)
Which version of the ECMAScript standard does Java's JavaScript engine Rhino support, how much work is going into fixing bugs and keeping the implementation in sync with the latest standardized ...
1
vote
1answer
82 views
Javascript get and set availability in browsers
Which browsers do not support the get and set methods for object prototypes? I believe this is a feature of ES5, an I know it works in Chrome, but I am wondering if it is safe to use for ajax apps. ...
1
vote
3answers
229 views
Need regex to match unformatted phone number syntax
I need a regex for Javascript that will match a phone number stripped of all characters except numbers and 'x' (for extension). Here are some example formats:
12223334444
2223334444
2223334444x5555
...
1
vote
3answers
96 views
How to implement C# syntax to use with own platform? ECMA Standard
I want to know, is this possible to use C# language syntax in own platform? I know that C# is ECMA standartized language. So how can it be implemented?
I know there are examples such as Mono & ...
0
votes
1answer
38 views
Problem with giving properties to the index of an array
I believe that I have a simple problem on my hands, yet I cant figure out what is worng with this code. I want to give a property to a javascript array, yet for some reason:
board = [[0], [0], [0]];
...
0
votes
0answers
115 views
Is there any good references for implementing a lexer for C#?
I want to implement a lexer for C# (Note not a parser, just a lexer) by C# language.
I don't want to use ANTLR or something like that.
Is there any good references for how to implementing a lexer for ...
0
votes
3answers
105 views
How can I exclude a string anyhwere in the pattern from matches?
I need to write a regex which will match URLs that do not have a specific query string name/value pair anywhere in its URL. All other query string names, and all other query string values with the ...
0
votes
1answer
192 views
Theming the iframe scroller bar
All,
In our web application, we have an iFrame that loads SVG. The browser automatically add the scroller bar when the user zooms into the SVG using the controls in our web application. Now we want ...
0
votes
6answers
226 views
Javascript “this” variable confusion
I am currently reading the book "Javascript: The Good Parts" and was playing with Functions.
I produced a test script to test some properties and I am somewhat confused by the results.
Here is the ...
0
votes
5answers
337 views
Why C# is an open standard but .NET is not?
Why C# is an open standard but .NET is not? What is the point in this? Why Microsoft decide to open only some part of their .NET?