Information technology - ECMAScript language specification

ISO/IEC 16262:2002 defines the ECMAScript scripting language.

Technologies de l'information - ECMAscript spécifications du langage

General Information

Status
Withdrawn
Publication Date
12-Jun-2002
Withdrawal Date
12-Jun-2002
Current Stage
9599 - Withdrawal of International Standard
Completion Date
25-May-2011
Ref Project

Relations

Buy Standard

Standard
ISO/IEC 16262:2002 - Information technology - ECMAScript language specification
English language
169 pages
sale 15% off
Preview
sale 15% off
Preview

Standards Content (Sample)

INTERNATIONAL ISO/IEC
STANDARD 16262
Second edition
2002-06-01

Information technology — ECMAScript
language specification
Technologies de l'information — ECMAScript spécifications du langage




Reference number
ISO/IEC 16262:2002(E)
©
ISO/IEC 2002

---------------------- Page: 1 ----------------------
ISO/IEC 16262:2002(E)
PDF disclaimer
This PDF file may contain embedded typefaces. In accordance with Adobe's licensing policy, this file may be printed or viewed but shall not
be edited unless the typefaces which are embedded are licensed to and installed on the computer performing the editing. In downloading this
file, parties accept therein the responsibility of not infringing Adobe's licensing policy. The ISO Central Secretariat accepts no liability in this
area.
Adobe is a trademark of Adobe Systems Incorporated.
Details of the software products used to create this PDF file can be found in the General Info relative to the file; the PDF-creation parameters
were optimized for printing. Every care has been taken to ensure that the file is suitable for use by ISO member bodies. In the unlikely event
that a problem relating to it is found, please inform the Central Secretariat at the address given below.


©  ISO/IEC 2002
All rights reserved. Unless otherwise specified, no part of this publication may be reproduced or utilized in any form or by any means, electronic
or mechanical, including photocopying and microfilm, without permission in writing from either ISO at the address below or ISO's member body
in the country of the requester.
ISO copyright office
Case postale 56 • CH-1211 Geneva 20
Tel. + 41 22 749 01 11
Fax + 41 22 749 09 47
E-mail copyright@iso.ch
Web www.iso.ch
Printed in Switzerland

ii © ISO/IEC 2002 – All rights reserved

---------------------- Page: 2 ----------------------
ISO/IEC 16262:2002(E)
Contents Page
1 Scope .1
2 Conformance.1
3 Normative References.1
4 Overview.2
4.1 Web Scripting.2
4.2 Language Overview .2
4.2.1 Objects .3
4.3 Terms and Definitions .4
4.3.1 Type.4
4.3.2 Primitive Value.4
4.3.3 Object .4
4.3.4 Constructor .4
4.3.5 Prototype .5
4.3.6 Native Object .5
4.3.7 Built-in Object .5
4.3.8 Host Object.5
4.3.9 Undefined Value.5
4.3.10 Undefined Type .5
4.3.11 Null Value .5
4.3.12 Null Type .5
4.3.13 Boolean Value .5
4.3.14 Boolean Type .5
4.3.15 Boolean Object.5
4.3.16 String Value .6
4.3.17 String Type .6
4.3.18 String Object.6
4.3.19 Number Value.6
4.3.20 Number Type.6
4.3.21 Number Object .6
4.3.22 Infinity .6
4.3.23 NaN .6
5 Notational Conventions .6
5.1 Syntactic and Lexical Grammars .6
5.1.1 Context-Free Grammars .6
5.1.2 The Lexical and RegExp Grammars .7
5.1.3 The Numeric String Grammar .7
5.1.4 The Syntactic Grammar.7
5.1.5 Grammar Notation.8
5.2 Algorithm Conventions.10
6 Source Text .11
7 Lexical Conventions.11
7.1 Unicode Format-Control Characters.12
7.2 White Space.12
7.3 Line Terminators .12
7.4 Comments.13
7.5 Tokens.14
© ISO/IEC 2002 – All rights reserved iii

---------------------- Page: 3 ----------------------
ISO/IEC 16262:2002(E)
7.5.1 Reserved Words.14
7.5.2 Keywords.14
7.5.3 Future Reserved Words .14
7.6 Identifiers.15
7.7 Punctuators .16
7.8 Literals.16
7.8.1 Null Literals.16
7.8.2 Boolean Literals.17
7.8.3 Numeric Literals.17
7.8.4 String Literals.19
7.8.5 Regular Expression Literals.21
7.9 Automatic Semicolon Insertion.22
7.9.1 Rules of Automatic Semicolon Insertion.22
7.9.2 Examples of Automatic Semicolon Insertion .23
8 Types.24
8.1 The Undefined Type.24
8.2 The Null Type.24
8.3 The Boolean Type.24
8.4 The String Type.24
8.5 The Number Type .25
8.6 The Object Type.26
8.6.1 Property Attributes.26
8.6.2 Internal Properties and Methods .26
8.7 The Reference Type .29
8.7.1 GetValue (V).30
8.7.2 PutValue (V, W).30
8.8 The List Type.30
8.9 The Completion Type.30
9 Type Conversion.30
9.1 ToPrimitive .30
9.2 ToBoolean .31
9.3 ToNumber .31
9.3.1 ToNumber Applied to the String Type .31
9.4 ToInteger .34
9.5 ToInt32: (Signed 32 Bit Integer).34
9.6 ToUint32: (Unsigned 32 Bit Integer).35
9.7 ToUint16: (Unsigned 16 Bit Integer).35
9.8 ToString.35
9.8.1 ToString Applied to the Number Type .36
9.9 ToObject.37
10 Execution Contexts .37
10.1 Definitions.37
10.1.1 Function Objects.37
10.1.2 Types of Executable Code .37
10.1.3 Variable Instantiation .38
10.1.4 Scope Chain and Identifier Resolution .38
10.1.5 Global Object.38
10.1.6 Activation Object.39
10.1.7 This .39
10.1.8 Arguments Object.39
10.2 Entering An Execution Context .39
10.2.1 Global Code.39
10.2.2 Eval Code .40
10.2.3 Function Code .40
11 Expressions.40
iv © ISO/IEC 2002 – All rights reserved

---------------------- Page: 4 ----------------------
ISO/IEC 16262:2002(E)
11.1 Primary Expressions .40
11.1.1 The this Keyword.40
11.1.2 Identifier Reference .40
11.1.3 Literal Reference .40
11.1.4 Array Initialiser.40
11.1.5 Object Initialiser.42
11.1.6 The Grouping Operator .43
11.2 Left-Hand-Side Expressions .43
11.2.1 Property Accessors .44
11.2.2 The new Operator.44
11.2.3 Function Calls.45
11.2.4 Argument Lists.45
11.2.5 Function Expressions .45
11.3 Postfix Expressions.46
11.3.1 Postfix Increment Operator .46
11.3.2 Postfix Decrement Operator.46
11.4 Unary Operators.46
11.4.1 The delete Operator.46
11.4.2 The void Operator.47
11.4.3 The typeof Operator .47
11.4.4 Prefix Increment Operator .47
11.4.5 Prefix Decrement Operator .47
11.4.6 Unary + Operator .47
11.4.7 Unary - Operator .48
11.4.8 Bitwise NOT Operator ( ~ ).48
11.4.9 Logical NOT Operator ( ! ).48
11.5 Multiplicative Operators.48
11.5.1 Applying the * Operator .49
11.5.2 Applying the / Operator .49
11.5.3 Applying the % Operator .49
11.6 Additive Operators .50
11.6.1 The Addition operator ( + ) .50
11.6.2 The Subtraction Operator ( - ) .51
11.6.3 Applying the Additive Operators ( +,- ) to Numbers .51
11.7 Bitwise Shift Operators.51
11.7.1 The Left Shift Operator ( << ) .51
11.7.2 The Signed Right Shift Operator ( >> ) .52
11.7.3 The Unsigned Right Shift Operator ( >>> ) .52
11.8 Relational Operators .52
11.8.1 The Less-than Operator ( < ).53
11.8.2 The Greater-than Operator ( > ) .53
11.8.3 The Less-than-or-equal Operator ( <= ) .53
11.8.4 The Greater-than-or-equal Operator ( >= ) .53
11.8.5 The Abstract Relational Comparison Algorithm .54
11.8.6 The instanceof operator .54
11.8.7 The in operator .54
11.9 Equality Operators .55
11.9.1 The Equals Operator ( == ) .55
11.9.2 The Does-not-equals Operator ( != ).55
11.9.3 The Abstract Equality Comparison Algorithm .56
11.9.4 The Strict Equals Operator ( === ).57
11.9.5 The Strict Does-not-equal Operator ( !== ) .57
11.9.6 The Strict Equality Comparison Algorithm.57
11.10 Binary Bitwise Operators .57
11.11 Binary Logical Operators .58
11.12 Conditional Operator ( ?: ) .59
11.13 Assignment Operators .60
11.13.1 Simple Assignment ( = ) .60
© ISO/IEC 2002 – All rights reserved v

---------------------- Page: 5 ----------------------
ISO/IEC 16262:2002(E)
11.13.2 Compound Assignment ( op= ) .60
11.14 Comma Operator ( , ) .60
12 Statements.61
12.1 Block.61
12.2 Variable statement .62
12.3 Empty Statement.63
12.4 Expression Statement .63
12.5 The if Statement .64
12.6 Iteration Statements .64
12.6.1 The do-while Statement.65
12.6.2 The while statement.
...

Questions, Comments and Discussion

Ask us and Technical Secretary will try to provide an answer. You can facilitate discussion about the standard in here.