block-leave.js 4.72 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 29
"use strict";

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
// We want to test the context chain shape.  In each of the tests cases
// below, the outer with is to force a runtime lookup of the identifier 'x'
// to actually verify that the inner context has been discarded.  A static
// lookup of 'x' might accidentally succeed.

{
  let x = 2;
  L: {
    let x = 3;
    assertEquals(3, x);
    break L;
    assertTrue(false);
  }
  assertEquals(2, x);
}

do {
  let x = 4;
  assertEquals(4,x);
  {
    let x = 5;
    assertEquals(5, x);
    continue;
    assertTrue(false);
  }
} while (false);

var caught = false;
try {
  {
    let xx = 18;
    throw 25;
    assertTrue(false);
  }
} catch (e) {
  caught = true;
  assertEquals(25, e);
67
  (function () {
68 69 70
    try {
      // NOTE: This checks that the block scope containing xx has been
      // removed from the context chain.
71
      eval('xx');
72 73 74 75
      assertTrue(false);  // should not reach here
    } catch (e2) {
      assertTrue(e2 instanceof ReferenceError);
    }
76
  })();
77 78 79 80
}
assertTrue(caught);


81
(function(x) {
82 83 84 85
  label: {
    let x = 'inner';
    break label;
  }
86 87
  assertEquals('outer', eval('x'));
})('outer');
88 89


90
(function(x) {
91 92 93 94 95 96 97
  label: {
    let x = 'middle';
    {
      let x = 'inner';
      break label;
    }
  }
98 99
  assertEquals('outer', eval('x'));
})('outer');
100 101


102
(function(x) {
103 104 105 106
  for (var i = 0; i < 10; ++i) {
    let x = 'inner' + i;
    continue;
  }
107 108
  assertEquals('outer', eval('x'));
})('outer');
109 110


111
(function(x) {
112 113 114 115 116 117 118
  label: for (var i = 0; i < 10; ++i) {
    let x = 'middle' + i;
    for (var j = 0; j < 10; ++j) {
      let x = 'inner' + j;
      continue label;
    }
  }
119 120
  assertEquals('outer', eval('x'));
})('outer');
121 122


123
(function(x) {
124 125 126 127
  try {
    let x = 'inner';
    throw 0;
  } catch (e) {
128
    assertEquals('outer', eval('x'));
129
  }
130
})('outer');
131 132


133
(function(x) {
134 135 136 137 138 139 140
  try {
    let x = 'middle';
    {
      let x = 'inner';
      throw 0;
    }
  } catch (e) {
141
    assertEquals('outer', eval('x'));
142
  }
143
})('outer');
144 145 146


try {
147
  (function(x) {
148 149 150 151
    try {
      let x = 'inner';
      throw 0;
    } finally {
152
      assertEquals('outer', eval('x'));
153
    }
154
  })('outer');
155 156 157 158 159 160
} catch (e) {
  if (e instanceof MjsUnitAssertionError) throw e;
}


try {
161
  (function(x) {
162 163 164 165 166 167 168
    try {
      let x = 'middle';
      {
        let x = 'inner';
        throw 0;
      }
    } finally {
169
      assertEquals('outer', eval('x'));
170
    }
171
  })('outer');
172 173 174 175 176 177
} catch (e) {
  if (e instanceof MjsUnitAssertionError) throw e;
}


// Verify that the context is correctly set in the stack frame after exiting
178
// from eval.
179 180
function f() {}

181
(function(x) {
182 183 184 185 186
  label: {
    let x = 'inner';
    break label;
  }
  f();  // The context could be restored from the stack after the call.
187 188
  assertEquals('outer', eval('x'));
})('outer');
189 190


191
(function(x) {
192 193 194 195 196
  for (var i = 0; i < 10; ++i) {
    let x = 'inner';
    continue;
  }
  f();
197 198
  assertEquals('outer', eval('x'));
})('outer');
199 200


201
(function(x) {
202 203 204 205 206
  try {
    let x = 'inner';
    throw 0;
  } catch (e) {
    f();
207
    assertEquals('outer', eval('x'));
208
  }
209
})('outer');
210 211 212


try {
213
  (function(x) {
214 215 216 217 218
    try {
      let x = 'inner';
      throw 0;
    } finally {
      f();
219
      assertEquals('outer', eval('x'));
220
    }
221
  })('outer');
222 223 224
} catch (e) {
  if (e instanceof MjsUnitAssertionError) throw e;
}