Konrad Malski

Results 10 comments of Konrad Malski

Hi, why is the same happening with `$comment` keyword? This is just non validation keyword from specification so it should be easy to implement it (I did it on my...

Hi, `id` was changed to `$id` in draft 6 (look at the end of this part of [the documentation](https://json-schema.org/understanding-json-schema/basics.html#id4)).

@stevehu Looks good for me. I found one more case in Joni library, when subtract of Option.MULTILINE is not enough, so I think it's reasonable to wait for answer (at...

Hi, when can we expect support for Vue 3? I'm starting a new project and wanted to do it with the newest version of vue. Is there any option to...

One more note, in this example ```java byte[] pattern = "^[a-z]{1,10}$".getBytes(); byte[] str = "ab\nab\n".getBytes(); Regex regex = new Regex(pattern, 0, pattern.length, Option.NONE, UTF8Encoding.INSTANCE, Syntax.ECMAScript); Matcher matcher = regex.matcher(str); int...

What I found are official test cases for EcmaScript262 [test262](https://github.com/tc39/test262/tree/main/test/built-ins/RegExp) but I did not find them really useful. Much more readable are V8 [tests](https://chromium.googlesource.com/v8/v8/+/master/test/mjsunit/) (V8 is the JavaScript engine of...

Hi @fdutton , It seems to me that with the addition of the implementation of `unevaluatedProperties` @Johnlon should be satisfied or if not this issue needs more clarfication.

Hi, did you have any chance to look at this issue? I would like to bring this thread back

I have checked the oniguruma project and could not find syntax for ECMA (I believe there is no such). There are a lot of different options in this project, do...

What do you think about targeting Java 17 (or even higher e.g. 21), instead of 11? Is there any reason to upgrade only to Java 11?