Jack Horton
Jack Horton
Agreed, that's a pretty lackluster error message. I imagine its because outside of async functions, await is treated like any other identifier name, so `function () { await call() }`...
I believe TimeClip is new -- I added it in Intl.cpp for use in DateTimeFormat, but it looks like it should be moved to somewhere more common and used in...
@anba what build of V8 are you using that respects it? ``` PS F:\intl\test262> eshost -tse "['AE', 'Ä'].sort(new Intl.Collator('de', {usage: 'sort'}).compare)" ┌────────────────────────────────┬──────┐ │ ch (Chakra1 x64_debug) │ Ä,AE │ │...
Just put a PR out for Chakra to respect usage properly, thanks to the information in this thread! https://github.com/Microsoft/ChakraCore/pull/5651
cc @littledan @caridy and @zbraniecki
(Chakra definitely has work to do here, not disputing that at all :) I just want to try to fix this once instead of multiple times ) In that scenario,...
What is the benefit of inlining the definitions vs calling the intrinsic? Since our implementation is in JS, I will selfishly voice my support for always calling intrinsics, since that...
There were recently a whole bunch of changes to enable building as a static library in upstream. Do you know if this is fixed yet?
I thought it was that no matter the arguments to configure, we build with _icu_. Node conflates ICU and Intl to mean the same thing, but we use ICU for...
For what its worth, ChakraCore has its own lightweight host, `ch`, that comes in the main ChakraCore repository. You might be able to use that, though note that it implements...