tuchida

Results 4 comments of tuchida

> You need to set both viewClient and webClient. I know. Then why the `viewClient_ != null`, not the `webClient_ != null` or `viewClient_ != null && webClient_ != null`.

I'm not familiar with Ragel, but it looks like it would probably be difficult to branch here. https://github.com/osteele/liquid/blob/5d67c47c6c28f6a0beec7094775f55246f81acea/expressions/scanner.rl#L92-L93 I can implement it if it can enclose it in backtick and...

What is the correct display when passing BigInt to `%f`? Chrome/96.0.4664.110 ```js console.log('%f', 10n) // NaN parseFloat(10n, 10) // 10 parseFloat(10n) // 10 ``` Firefox/97.0 ```js console.log('%f', 10n) // undefined...

Arithmetic operations on BigInt and Number will trhow a TypeError. ```js 2n % 2 // Uncaught TypeError: can't convert BigInt to number ```