Thomas Gossmann
Thomas Gossmann
For me to understand, because I haven't seen that yet. Is that like: ``` return var1,var2 ``` Then yes, this should be implemented.
How are those return variables accessed? ``` function retVars() { var1 = 1; var2 = 2; return var1, var2; } cf = retVars(); // cf.var1 and cf.var2 -- or --...
Well, JavaScript uses Destructuring Assignment, which is kind of multiple return values, because you are technically returning an array. ``` [x, y] = (function(){ return [3, 4]; })(); x; //...
Ah, that makes more sense to me. Will change it in the next edit.
Its free to add additional fields to the output. As so, it might happen that other output generators may not realize them.
Yes, can be easily added.
Mime Types are a good idea, I like that.
I'm not sure either. For a JSON format gzip and base64 seems cool, in XML this can be surrounded using a CDATA section.
I'm not working on this at the moment. Yet, if so can send a pull request that'd do the job.
Probably would make sense, as my [eclipse-components](https://github.com/gossi/eclipse-components) are a requirement for the transpiler plugin. If I do understand the concept correctly.