Lucas Mendelowski

Results 63 comments of Lucas Mendelowski

> Eventually I'd like to expose the `zk` configuration options through the LSP server. That would be great :)

@masatake basically when class / module is nested (`A::B`), `--extra=q` would generate 2 records in ctags - one for `class B` and the other one for `class A::B`. It would...

I can confirm this. I just bumped my app to 3.28.0 and was bitten by the same error.

@knownasilya @kevinkucharczyk I believe found the culprit: [CoreStore](https://github.com/emberjs/data/blob/v3.27.1/packages/store/addon/-private/system/core-store.ts#L2459) in 3.27.1 doesn't have `REQUEST_SERVICE` flag enabled ([in 3.28.1 it's already on]( https://github.com/emberjs/data/blob/v3.28.1/packages/canary-features/addon/default-features.ts)) so `scheduleSave` relies on `pendingSave` queue (which uses `internalModel.createSnapshot(options)`...

@knownasilya I've looked into this again and it looks this addon overrides `internalModel.createSnapshot` in [addon/ext.js](https://github.com/adopted-ember-addons/ember-data-model-fragments/blob/master/addon/ext.js#L276) file. By doing so, it can traverse all attributes and call `createSnapshot` recursively. When you...

@runspired could you provide more information how to do it? I'd like to try making this add-on compatible with Ember Data 3.28. From my understanding fragments are basically [computed properties...

@knownasilya I've just tested it on my project and #407 doesn't fix this issue - now I'm getting a following error: ``` Error: Assertion Failed: The `attr` method is not...

@knownasilya there are already failing tests on existing test suite related to that error: https://github.com/adopted-ember-addons/ember-data-model-fragments/runs/3613005831?check_suite_focus=true#step:7:641 https://github.com/adopted-ember-addons/ember-data-model-fragments/runs/3613005831?check_suite_focus=true#step:7:456

How to use this Path Mapping? I'm developing PHP Apps on MacOS, and share the code to the Ubuntu on VM and preview the code from that machine on the...

I've also encountered similar bug with Yosemite, Postgres 9.5.1 and PSequel >= 1.4.0. I've downgraded to 1.3.5 and it's working fine. The strange thing with >= 1.4.0 is that it...