Re: [heycam/webidl] Add bigint type (#525)

> What does calling someX.foo("1") do? What should it do?

I'd say, call the numeric overload over the bigint one. Doesn't this situation already exist in cases like the following, which would also call the numeric overload over the boolean one given a string argument?

```
interface X {
  void foo(boolean x);
  void foo(unsigned long long y);
}
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/pull/525#issuecomment-368968738

Received on Tuesday, 27 February 2018 17:59:31 UTC