OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 # |
| 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions |
| 6 # are met: |
| 7 # 1. Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. |
| 9 # 2. Redistributions in binary form must reproduce the above copyright |
| 10 # notice, this list of conditions and the following disclaimer in the |
| 11 # documentation and/or other materials provided with the distribution. |
| 12 # |
| 13 # THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY |
| 14 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 15 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 16 # DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 17 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 18 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 19 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 20 # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 22 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 |
| 24 This file checks which ECMAScript 3 keywords are treated as reserved words. |
| 25 |
| 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 27 |
| 28 |
| 29 SHOULD BE RESERVED: |
| 30 PASS isReserved('break') is true |
| 31 PASS isReserved('case') is true |
| 32 PASS isReserved('catch') is true |
| 33 PASS isReserved('class') is true |
| 34 PASS isReserved('const') is true |
| 35 PASS isReserved('continue') is true |
| 36 PASS isReserved('debugger') is true |
| 37 PASS isReserved('default') is true |
| 38 PASS isReserved('delete') is true |
| 39 PASS isReserved('do') is true |
| 40 PASS isReserved('else') is true |
| 41 PASS isReserved('enum') is true |
| 42 PASS isReserved('export') is true |
| 43 PASS isReserved('extends') is true |
| 44 PASS isReserved('false') is true |
| 45 PASS isReserved('finally') is true |
| 46 PASS isReserved('for') is true |
| 47 PASS isReserved('function') is true |
| 48 PASS isReserved('if') is true |
| 49 PASS isReserved('import') is true |
| 50 PASS isReserved('in') is true |
| 51 PASS isReserved('instanceof') is true |
| 52 PASS isReserved('new') is true |
| 53 PASS isReserved('null') is true |
| 54 PASS isReserved('return') is true |
| 55 PASS isReserved('super') is true |
| 56 PASS isReserved('switch') is true |
| 57 PASS isReserved('this') is true |
| 58 PASS isReserved('throw') is true |
| 59 PASS isReserved('true') is true |
| 60 PASS isReserved('try') is true |
| 61 PASS isReserved('typeof') is true |
| 62 PASS isReserved('var') is true |
| 63 PASS isReserved('void') is true |
| 64 PASS isReserved('while') is true |
| 65 PASS isReserved('with') is true |
| 66 |
| 67 SHOULD NOT BE RESERVED: |
| 68 PASS isReserved('abstract') is false |
| 69 PASS isReserved('boolean') is false |
| 70 PASS isReserved('byte') is false |
| 71 PASS isReserved('char') is false |
| 72 PASS isReserved('double') is false |
| 73 PASS isReserved('final') is false |
| 74 PASS isReserved('float') is false |
| 75 PASS isReserved('goto') is false |
| 76 PASS isReserved('implements') is false |
| 77 PASS isReserved('int') is false |
| 78 PASS isReserved('interface') is false |
| 79 PASS isReserved('long') is false |
| 80 PASS isReserved('native') is false |
| 81 PASS isReserved('package') is false |
| 82 PASS isReserved('private') is false |
| 83 PASS isReserved('protected') is false |
| 84 PASS isReserved('public') is false |
| 85 PASS isReserved('short') is false |
| 86 PASS isReserved('static') is false |
| 87 PASS isReserved('synchronized') is false |
| 88 PASS isReserved('throws') is false |
| 89 PASS isReserved('transient') is false |
| 90 PASS isReserved('volatile') is false |
| 91 |
| 92 PASS successfullyParsed is true |
| 93 |
| 94 TEST COMPLETE |
| 95 |
OLD | NEW |