David Fahlander

Results 557 comments of David Fahlander

> I don't know what that means. What does try/finally have to do with anything? With try...finally, I mean a pattern for maintaining a sync context via a variable ```js...

> > With try...finally, I mean a pattern for maintaining a sync context via a variable > > I'm not sure how this relates to the generator discussion? Sorry for...

I have two users of [dexie-export-import](https://dexie.org/docs/ExportImport/dexie-export-import) that bump on this issue too. Could you give some guidance on how to resolve it? Is the only solution to increase MAX_BUFFER_LENGTH to...

Thanks! I did increase it to 10MB for now. I see the problem. In our code we also assume that each single row could always fit into memory. We wouldn't...

Even though similar to `with` keyword, the suggestion is not do use an implicit `with` in methods. My suggestion is to make it super clear at parse time what it...

I realize that my proposal would not be in line with how methods are accessed, as standardized in ES2015. ``` js function doSomething () { } class Foo { someProp;...

Maybe an option would be to ignore class fields without an initializer and treat them as a no-op as they are generally a bad idea in plain JS and lead...

I still find class fields very nice for initializing fields without having to declare a contructor. Also to block the property from a get/set property in the parent class. ```js...

> Would `name;` effectively be a comment in that case? Yes, or treat it as a syntax error, just like `name: string;` is a syntax error (but still perfectly allowed...

Hi @ignasbernotas! For my part, I would appreciate having full access to the git repo and the npm package - just so that it is possible to fix issues or...