gecko-dev/js2/jsc/test/ecma-e4/03.statements/with.1.js

19 строки
265 B
JavaScript

/*
* The with Statement
*/
function title() {
return "The with Statement";
}
function run() {
with(o) print('a')
with(o) print('a');
with(o) { print('a') }
}
/*
* Copyright (c) 1999, Mountain View Compiler Company. All rights reserved.
*/