You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thread 'main' panicked at 'Could not get next codepoint: DecodeUtf16Error { code: 56797 }', /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/lexer/string.rs:185:42
stack backtrace:
0: rust_begin_unwind
at /rustc/d006f5734f49625c34d6fc33bf6b9967243abca8/library/std/src/panicking.rs:483
1: core::panicking::panic_fmt
at /rustc/d006f5734f49625c34d6fc33bf6b9967243abca8/library/core/src/panicking.rs:85
2: core::option::expect_none_failed
at /rustc/d006f5734f49625c34d6fc33bf6b9967243abca8/library/core/src/option.rs:1221
3: core::result::Result<T,E>::expect
at /home/capitol/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:933
4: <boa::syntax::lexer::string::StringLiteral as boa::syntax::lexer::Tokenizer<R>>::lex
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/lexer/string.rs:182
5: boa::syntax::lexer::Lexer<R>::next
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/lexer/mod.rs:191
6: boa::syntax::parser::cursor::buffered_lexer::BufferedLexer<R>::fill
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/parser/cursor/buffered_lexer/mod.rs:116
7: boa::syntax::parser::cursor::buffered_lexer::BufferedLexer<R>::peek
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/parser/cursor/buffered_lexer/mod.rs:201
8: boa::syntax::parser::cursor::Cursor<R>::peek
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/parser/cursor/mod.rs:56
9: <boa::syntax::parser::Script as boa::syntax::parser::TokenParser<R>>::parse
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/parser/mod.rs:124
10: boa::syntax::parser::Parser<R>::parse_all
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/syntax/parser/mod.rs:104
11: boa::parse
at /home/capitol/.cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/Boa-0.10.0/src/lib.rs:73
12: boa_reproduce::main
at ./src/main.rs:2
13: core::ops::function::FnOnce::call_once
at /home/capitol/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs:227
The text was updated successfully, but these errors were encountered:
Hi @HalidOdat , I would like to work on this issue. Could you assign it to me please?
I've looked into the expected behavior of it. We can have a workaround like replacing the invalid code point with a fixed replacement character. However, it can not handle the case like:
constx='\uD834';// '�', invalid code pointconsty='\uDD1E';// '�', invalid code pointconsole.log(x+y);// '��', should be '𝄞'
I think this case is difficult to handle until we have #736 resolved. Any ideas about it?
Describe the bug
Expected an Error, not a panic.
To Reproduce
Can be reproduced with this program
Expected behavior
An Error.
Build environment (please complete the following information):
Additional context
Full stacktrace:
The text was updated successfully, but these errors were encountered: