gorillascript icon indicating copy to clipboard operation
gorillascript copied to clipboard

GorillaScript is a compile-to-JavaScript language designed to empower the user while attempting to prevent some common errors.

Results 51 gorillascript issues
Sort by recently updated
recently updated
newest added

Hello. It seems to me like gorillascript is no longer being actively maintained. I would love to be able to contribute heavily to this repo, but I find my biggest...

In some cases, the existing syntax of `promise! #()* ...` seems a little unwieldy, especially in the case of something like: ``` def get-something = promise! #(key)* yield ... ```...

enhancement
syntax

When generators are converted to JS, there ends up being both a `var _step` and a `function _step`, which breaks some strict-mode engines (e.g. recent versions of Chrome).

bug

Now you can have original source position in stack trace. ``` gorillascript let x() throw new Error("hello") x() ``` ``` log Error: hello at x (/home/unco/snips/gerror/error.gs:2:8, :4:11) at Object. (/home/unco/snips/gerror/error.gs:4:1,...

Hi guys, is possible use ternjs for "intellisense" or smart completition with ternjs, only is necessary the source map, in the google group of ternjs shows the coffeescript tern...if anyone...

It feels like something like this shouldn't break the gorilla compiler: ``` javascript if e and (e.source != this.global or e.origin != this.origin or e.data != this.token) return ``` Yet...

[gulp.gs](https://github.com/unc0/gulp.gs) this is a wrapper for gulp, so you can write gulpfile in gorillascript. [gorillaify](https://github.com/unc0/gorillaify) this is a browserify module, you can mix javascript and gorillascript in your project and...

I would expect this to throw an error. ``` let arr = [1,2,3,4] arr.push 5 ``` --- I would also expect this to throw an error or do a clone...

Basically what I'm wanting to do is tell GorillaScript to generate a macro function from something like the following: ``` let a = @tmp \a ASTE let $a = true...

is there a guide to converting from coffeescript?