/
githubmirror
/
jdk11u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk11u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/tools/jjs/modulepath.js
21 строка
553 B
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * This is the test JavaScript program used in jjs-modulepathTest.sh */ print("--module-path passed: " + $OPTIONS._module_path); print("--add-modules passed: " + $OPTIONS._add_modules); var Hello = com.greetings.Hello; var moduleName = Hello.class.module.name; if (moduleName != "com.greetings") { throw new Error("Expected module name to be com.greetings"); } else { print("Module name is " + moduleName); } var msg = Hello.greet(); if (msg != "Hello World!") { throw new Error("Expected 'Hello World!'"); } else { print(msg); }