/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/testdata/run/no_validate_asm.js
20 строк
354 B
Bartek Iwańczuk
chore: bump dprint-plugin-typescript to 0.96.0, remove deno-fmt-ignore-file (#33839)
05 май 2026, 08:34
Не верифицирован
05 май 2026, 08:34
3eaa2fb
Код
Авторство
О чём код?
// V8 logs any asmjs validation errors to stdout, but it shows line numbers that // are non-existent in the source. const _asmJsModule = function () { "use asm"; function func( x, ) { x = +x; // cast to float ~x; // asmjs error: `~` is only valid on integers // should not log to stdout with --no-validate-asm } return { f: func, }; }();