rhino1.7.6.testsrc.tests.js1_7.geniter.regress-349331.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var gTestfile = 'regress-349331.js';
//-----------------------------------------------------------------------------
var BUGNUMBER = 349331;
var summary = 'generator.close without GeneratorExit';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
var catch1, catch2, catch3, finally1, finally2, finally3;
var iter;
function gen()
{
yield 1;
try {
try {
try {
yield 1;
} catch (e) {
catch1 = true;
} finally {
finally1 = true;
}
} catch (e) {
catch2 = true;
} finally {
finally2 = true;
}
} catch (e) {
catch3 = true;
} finally {
finally3 = true;
}
}
// test explicit close call
catch1 = catch2 = catch3 = finally1 = finally2 = finally3 = false;
iter = gen();
iter.next();
iter.next();
iter.close();
var passed = !catch1 && !catch2 && !catch3 && finally1 && finally2 &&
finally3;
if (!passed) {
print("Failed!");
print("catch1=" + catch1 + " catch2=" + catch2 + " catch3=" +
catch3);
print("finally1=" + finally1 + " finally2=" + finally2 +
" finally3=" + finally3);
}
reportCompare(true, passed, 'test explicit close call');
// test GC-invoked close
catch1 = catch2 = catch3 = finally1 = finally2 = finally3 = false;
iter = gen();
iter.next();
iter.next();
iter = null;
gc();
gc();
var passed = !catch1 && !catch2 && !catch3 && finally1 && finally2 &&
finally3;
if (!passed) {
print("Failed!");
print("catch1=" + catch1 + " catch2=" + catch2 + " catch3=" +
catch3);
print("finally1=" + finally1 + " finally2=" + finally2 +
" finally3="+finally3);
}
reportCompare(true, passed, 'test GC-invoke close');
reportCompare(expect, actual, summary);
exitFunc ('test');
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy