Re: Proposal: export ** from './FooBar'

2019-03-02 Thread Jordan Harband
https://github.com/tc39/ecma262/pull/1174 adds `export * as someName from 'path'`; https://github.com/tc39/proposal-export-default-from is the proposal that you're looking for. On Fri, Mar 1, 2019 at 6:48 AM Mike Samuel wrote: > > > On Fri, Mar 1, 2019 at 1:35 AM Cyril Auburtin > wrote: > >>

Re: Proposal: switch expressions

2019-03-02 Thread Isiah Meadows
IIUC the "object dispatch integer"/"object dispatch string" benchmarks are the things you were referring to. Those simulate what the engine would see with virtual dispatch and completely different type maps, just without the source overhead of creating an entire class just for a little benchmark.