Philippe Poulard

Results 15 comments of Philippe Poulard

So you don't have any stacktrace of the "explosion" ? Can you try the plugin with the `include` option by including just a single file and tell me what is...

The ability to decorate a member function of an abstract class is not the same as for an interface : an interface is not in the value space and is...

@RyanCavanaugh Hi, as shown in my previous comment, it seems that decorating an abstract member function of an abstract class should be allowed ? What kind of feedback is still...

Changing insertions with : `d.text.insertAt(0, ....'abc');` (and `...'ABC'`) fix the stuff. However, this is still a bug, because in some cases I get : ```typescript d.text.insertAt(0, ...'abc'); d.text.insertAt(1, {foo: 'BAR'});...

Finally, I found a solution : ```js async function populateProjectFromLocalDirectory(ownerId, project, topLevelDir) { FileSystemImportManager.promises.addFolderContents( ownerId, project._id, project.rootFolder[0]._id, topLevelDir, true ) } ``` ...just by exporting the relevant function