block-scoping.js 6.16 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// Copyright 2011 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

28
// Flags: --allow-natives-syntax --harmony-scoping
29 30
// Test functionality of block scopes.

31 32 33
// TODO(ES6): properly activate extended mode
"use strict";

34 35 36 37 38 39 40 41 42 43 44
// Hoisting of var declarations.
function f1() {
  {
    var x = 1;
    var y;
  }
  assertEquals(1, x)
  assertEquals(undefined, y)
}
f1();

45 46

// Dynamic lookup in and through block contexts.
47 48
function f2(one) {
  var x = one + 1;
49
  let y = one + 2;
50
  const u = one + 4;
51 52
  {
    let z = one + 3;
53
    const v = one + 5;
54 55
    assertEquals(1, eval('one'));
    assertEquals(2, eval('x'));
56 57
    assertEquals(3, eval('y'));
    assertEquals(4, eval('z'));
58 59
    assertEquals(5, eval('u'));
    assertEquals(6, eval('v'));
60 61 62 63
  }
}
f2(1);

64 65 66 67 68

// Lookup in and through block contexts.
function f3(one) {
  var x = one + 1;
  let y = one + 2;
69
  const u = one + 4;
70 71
  {
    let z = one + 3;
72
    const v = one + 5;
73 74 75 76
    assertEquals(1, one);
    assertEquals(2, x);
    assertEquals(3, y);
    assertEquals(4, z);
77 78 79
    assertEquals(5, u);
    assertEquals(6, v);

80 81 82 83 84 85 86 87 88
  }
}
f3(1);


// Dynamic lookup from closure.
function f4(one) {
  var x = one + 1;
  let y = one + 2;
89
  const u = one + 4;
90 91
  {
    let z = one + 3;
92
    const v = one + 5;
93 94 95 96 97
    function f() {
      assertEquals(1, eval('one'));
      assertEquals(2, eval('x'));
      assertEquals(3, eval('y'));
      assertEquals(4, eval('z'));
98 99
      assertEquals(5, eval('u'));
      assertEquals(6, eval('v'));
100 101 102 103 104 105 106 107 108 109
    };
  }
}
f4(1);


// Lookup from closure.
function f5(one) {
  var x = one + 1;
  let y = one + 2;
110
  const u = one + 4;
111 112
  {
    let z = one + 3;
113
    const v = one + 5;
114 115 116 117 118
    function f() {
      assertEquals(1, one);
      assertEquals(2, x);
      assertEquals(3, y);
      assertEquals(4, z);
119 120
      assertEquals(5, u);
      assertEquals(6, v);
121 122 123 124 125 126 127 128 129
    };
  }
}
f5(1);


// Return from block.
function f6() {
  let x = 1;
130
  const u = 3;
131 132
  {
    let y = 2;
133
    const v = 4;
134 135 136 137 138 139 140 141 142 143 144
    return x + y;
  }
}
assertEquals(3, f6(6));


// Variable shadowing and lookup.
function f7(a) {
  let b = 1;
  var c = 1;
  var d = 1;
145 146
  const e = 1;
  { // let variables shadowing argument, let, const and var variables
147 148 149
    let a = 2;
    let b = 2;
    let c = 2;
150 151 152 153 154 155 156 157 158 159 160
    let e = 2;
    assertEquals(2,a);
    assertEquals(2,b);
    assertEquals(2,c);
    assertEquals(2,e);
  }
  { // const variables shadowing argument, let, const and var variables
    const a = 2;
    const b = 2;
    const c = 2;
    const e = 2;
161 162 163
    assertEquals(2,a);
    assertEquals(2,b);
    assertEquals(2,c);
164
    assertEquals(2,e);
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
  }
  try {
    throw 'stuff1';
  } catch (a) {
    assertEquals('stuff1',a);
    // catch variable shadowing argument
    a = 2;
    assertEquals(2,a);
    {
      // let variable shadowing catch variable
      let a = 3;
      assertEquals(3,a);
      try {
        throw 'stuff2';
      } catch (a) {
        assertEquals('stuff2',a);
        // catch variable shadowing let variable
        a = 4;
        assertEquals(4,a);
      }
      assertEquals(3,a);
    }
    assertEquals(2,a);
  }
  try {
    throw 'stuff3';
  } catch (c) {
    // catch variable shadowing var variable
    assertEquals('stuff3',c);
194 195 196 197 198 199
    {
      // const variable shadowing catch variable
      const c = 3;
      assertEquals(3,c);
    }
    assertEquals('stuff3',c);
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    try {
      throw 'stuff4';
    } catch(c) {
      assertEquals('stuff4',c);
      // catch variable shadowing catch variable
      c = 3;
      assertEquals(3,c);
    }
    (function(c) {
      // argument shadowing catch variable
      c = 3;
      assertEquals(3,c);
    })();
    assertEquals('stuff3', c);
    (function() {
      // var variable shadowing catch variable
      var c = 3;
    })();
    assertEquals('stuff3', c);
    c = 2;
  }
  assertEquals(1,c);
222 223
  (function(a,b,c,e) {
    // arguments shadowing argument, let, const and var variable
224 225 226
    a = 2;
    b = 2;
    c = 2;
227
    e = 2;
228 229 230
    assertEquals(2,a);
    assertEquals(2,b);
    assertEquals(2,c);
231
    assertEquals(2,e);
232 233 234 235 236 237 238
    // var variable shadowing var variable
    var d = 2;
  })(1,1);
  assertEquals(1,a);
  assertEquals(1,b);
  assertEquals(1,c);
  assertEquals(1,d);
239
  assertEquals(1,e);
240 241 242 243
}
f7(1);


244 245
// Ensure let and const variables are block local
// and var variables function local.
246 247 248
function f8() {
  var let_accessors = [];
  var var_accessors = [];
249
  var const_accessors = [];
250 251 252
  for (var i = 0; i < 10; i++) {
    let x = i;
    var y = i;
253
    const z = i;
254 255
    let_accessors[i] = function() { return x; }
    var_accessors[i] = function() { return y; }
256
    const_accessors[i] = function() { return z; }
257 258 259 260 261
  }
  for (var j = 0; j < 10; j++) {
    y = j + 10;
    assertEquals(j, let_accessors[j]());
    assertEquals(y, var_accessors[j]());
262
    assertEquals(j, const_accessors[j]());
263 264 265
  }
}
f8();