/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/javax/script/Test5.js
40 строк
1 KB
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
var ScriptContext = javax.script.ScriptContext; print(count); switch (count) { // engine only case 1: if (key != 'value in engine') { throw "unexpected engine scope value"; } if (context.getAttribute("key", ScriptContext.GLOBAL_SCOPE ) != null) { throw "unexpected global scope value"; } break; // both scopes case 2: if (key != 'value in engine') { throw "unexpected engine scope value"; } if (context.getAttribute("key", ScriptContext.GLOBAL_SCOPE ) != "value in global") { throw "unexpected global scope value"; } break; // global only case 3: if (key != 'value in global') { throw "unexpected global scope value"; } if (context.getAttribute("key", ScriptContext.GLOBAL_SCOPE ) != "value in global") { throw "unexpected global scope value"; } break; default: throw "unexpected count"; break; }