Bruno Macabeus

Results 43 issues of Bruno Macabeus

At this moment, we could use `perform` only in three situations: - **ExpressionStatement**: `perform 'foo'` - **AssignmentExpression**: `a = perform 'foo'` - **VariableDeclarator**: `let a = perform 'foo'` So we...

spec

Fixed this error message: ![image](https://user-images.githubusercontent.com/9501115/32209888-6039094a-bde9-11e7-8dec-e26396c969e6.png)

The correct syntax to declare a new regex is `&/regex/` or `&/regex/modifiers`. But, currently, is possible declare a regex simply with `&/regex` in REPL. For example: ``` Quack> let x...

bug
module:lexer

If we try declare a new symbol wrongly, this new symbol isn't storage in the context (it's correct), for example: ``` Quack> fn test(x) :- x + 1 **** Quack,...

Currently, the lint doesn't allow a code like: ```js value = .001 ``` then, we must rewrite to ```js value = 0.001 ``` But, the number `.001` is easy to...

Currently the section for [optionalMemberExpression ](https://babeljs.io/docs/en/babel-types#optionalmemberexpression) is saying that `property` parameter could be `any`, but it isn't true anymore, as well [could be noticed on the code](https://github.com/babel/babel/blob/e9c1bce50f590c484e9ba7cc0b19caa88e66659d/packages/babel-types/src/definitions/experimental.js#L87-L88). I think that...

[On this PR](https://github.com/macabeus/klo-gba.js/pull/83) we added the GBA emulator. It works very well, but when it starts on Chrome, it plays some squeak for short time, even when the volume is...

**Is your feature request related to a problem? Please describe.** A syntax highlighting that express more details on codebase is useful to developer read and understand better the code. **Describe...

feature-request