Robert Boulanger
Robert Boulanger
I'd like to weigh in on this discussion briefly and add my 2 cents. As a developer who started on the mainframe in the 80's with Cobol and Cics and...
There is one more issue when dealing with classes: even when writing (note the **fat** arrow): ```coffeescript # ###* # @param {string} b ### method2 : (b) => console.log b...
A real world scenario would be (and is) if an instance of such a class is for example, pushed into an reactive array in Vue3. As soon as a methodof...
@phil294: It is indeed an options api but already Vue3. I'm porting currently a huge Quasar App. So the _reactive array_ I mentioned, was not an array created with _reactive(array)_,...
You are right, there is an option outside the scope of the class, but not as you assumed : the complete sample.coffee to reconstruct the problem: ```coffeescript outSideMethod = (s)...
Maybe it would be a good idea to collect all those things and add it to the documentation of coffeesense ?
I solved this by doing the following way: ``` #imports from gooey import Gooey, GooeyParser target = None if "__compiled__" in globals(): target = sys.argv[0] @Gooey(target=target) def main(): parser =...