ANSI ISO IEC 16262-2002 Information technology ECMAScript language specification《信息技术.被INCITS采用的脚本语言规范》.pdf
《ANSI ISO IEC 16262-2002 Information technology ECMAScript language specification《信息技术.被INCITS采用的脚本语言规范》.pdf》由会员分享,可在线阅读,更多相关《ANSI ISO IEC 16262-2002 Information technology ECMAScript language specification《信息技术.被INCITS采用的脚本语言规范》.pdf(180页珍藏版)》请在麦多课文档分享上搜索。
1、 Reference numberISO/IEC 16262:2002(E)ISO/IEC 2002INTERNATIONAL STANDARD ISO/IEC16262Second edition2002-06-01Information technology ECMAScript language specification Technologies de linformation ECMAScript spcifications du langage Adopted by INCITS (InterNational Committee for Information Technology
2、 Standards) as an American National Standard.Date of ANSI Approval: 11/7/2002Published by American National Standards Institute,25 West 43rd Street, New York, New York 10036Copyright 2002 by Information Technology Industry Council (ITI).All rights reserved.These materials are subject to copyright cl
3、aims of International Standardization Organization (ISO), InternationalElectrotechnical Commission (IEC), American National Standards Institute (ANSI), and Information Technology Industry Council(ITI). Not for resale. No part of this publication may be reproduced in any form, including an electronic
4、 retrieval system, withoutthe prior written permission of ITI. All requests pertaining to this standard should be submitted to ITI, 1250 Eye Street NW,Washington, DC 20005.Printed in the United States of AmericaISO/IEC 16262:2002(E) PDF disclaimer This PDF file may contain embedded typefaces. In acc
5、ordance with Adobes 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 Adobes
6、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 pri
7、nting. 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
8、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 ISOs member body in the country of the requester. ISO copyright office Case postale 56 CH-
9、1211 Geneva 20 Tel. + 41 22 749 01 11 Fax + 41 22 749 09 47 E-mail copyrightiso.ch Web www.iso.ch Printed in Switzerland ii ISO/IEC 2002 All rights reservedISO/IEC 16262:2002(E) ISO/IEC 2002 All rights reserved iiiContents Page 1 Scope 1 2 Conformance1 3 Normative References.1 4 Overview.2 4.1 Web S
10、cripting.2 4.2 Language Overview .2 4.2.1 Objects .3 4.3 Terms and Definitions 4 4.3.1 Type4 4.3.2 Primitive Value4 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 Va
11、lue .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 Type6 4.3.21 Number Object .6 4.3.22 Infinity .6 4.3.23 NaN 6 5 Notational Conventions 6 5.1 Syntacti
12、c 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 Grammar7 5.1.5 Grammar Notation8 5.2 Algorithm Conventions.10 6 Source Text 11 7 Lexical Conventions11 7.1 Unicode Format-Control Characters 12 7.2 W
13、hite Space.12 7.3 Line Terminators 12 7.4 Comments13 7.5 Tokens14 ISO/IEC 16262:2002(E) iv ISO/IEC 2002 All rights reserved7.5.1 Reserved Words.14 7.5.2 Keywords 14 7.5.3 Future Reserved Words .14 7.6 Identifiers15 7.7 Punctuators 16 7.8 Literals16 7.8.1 Null Literals .16 7.8.2 Boolean Literals17 7.
14、8.3 Numeric Literals17 7.8.4 String Literals19 7.8.5 Regular Expression Literals21 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 Type24
15、8.4 The String Type24 8.5 The Number Type 25 8.6 The Object Type.26 8.6.1 Property Attributes26 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 Type30 8.9 The Completion Type.30 9 Type Conversion30 9.1 ToPrimitive .30 9.2
16、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 ToString35 9.8.1 ToString Applied to the Number Type 36 9.9 ToObject.37 10 Exec
17、ution 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 Object38 10.1.6 Activation Object.39 10.1.7 This .39 10.1.8 Arguments Object.39 10.2 Entering An Execu
18、tion Context 39 10.2.1 Global Code39 10.2.2 Eval Code .40 10.2.3 Function Code 40 11 Expressions40 ISO/IEC 16262:2002(E) ISO/IEC 2002 All rights reserved v11.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 Initialiser40 11.1
19、.5 Object Initialiser42 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 Operator44 11.2.3 Function Calls.45 11.2.4 Argument Lists45 11.2.5 Function Expressions .45 11.3 Postfix Expressions46 11.3.1 Postfix Increment Operator 46 11.3.2 Po
20、stfix Decrement Operator.46 11.4 Unary Operators.46 11.4.1 The delete Operator.46 11.4.2 The void Operator47 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
21、 11.4.9 Logical NOT Operator ( ! ).48 11.5 Multiplicative Operators48 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
22、the Additive Operators ( +,- ) to Numbers .51 11.7 Bitwise Shift Operators.51 11.7.1 The Left 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.3 The Less-than-or-equal Operator ( = ) 53 11.8.5 The Abstract R
23、elational 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 ( = ).
24、57 11.9.5 The Strict Does-not-equal Operator ( != ) .57 11.9.6 The Strict Equality Comparison Algorithm57 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 16262:2002(E
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
10000 积分 0人已下载
下载 | 加入VIP,交流精品资源 |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- ANSIISOIEC162622002INFORMATIONTECHNOLOGYECMASCRIPTLANGUAGESPECIFICATION 信息技术 INCITS 采用 脚本语言 规范 PDF

链接地址:http://www.mydoc123.com/p-437215.html