Kirill Nesmeyanov
Kirill Nesmeyanov
Example code: ``` java batch.begin(); // render bg sprite batch.end(); postProcessor.capture(); // With one new Bloom effect batch.begin(); // render fire (particles) batch.end(); postProcessor.render(); batch.begin(); // render stones batch.end(); ```...
Hello! For novice developers, this is a very useful example that contains a minimum to get started, thanks. However, many are poorly familiar with the language core. Therefore, if possible,...
Second argument of `list()` grammar method can be optional now. This feature adds the ability to specify duplicate fragments with a division by `T_WHITESPACE` (e.g "\n", "\s", etc...).
## Fixed whitespace before Closure "use" statement. Before: ```php function ($arg) use($var) { ... } ``` After: ```php function ($arg) use ($var) { ... } // ^ whitespace added ```...
@Hywan hi! I saw your twitter post: https://twitter.com/mnt_io/status/1206936893692219393 About a 2 year ago, I forked this package (https://github.com/hoaproject/Compiler/network). And for some time he developed it as part of a GraphQL...
If you remove the support for the token namespaces, then can significantly speed up the Lexer. This will simply completely rewrite the algorithm. Benchmarks: - 3000 code lines - 11867...
Example code with an error on the last line: ```graphql type A { some(arg: String = "😺 😸 😹 😻 😼 😽 🙀 😿 😾"): Any } 😿 ``` Expected...
The third argument to the Token rule is not needed and is not required at runtime or for some other things. We can get rid of it. ```php new Token($id,...
Fixes ["Incorrect calculation of line and position in utf-8 files" issue](https://github.com/hoaproject/Compiler/issues/78) ## Unrecognized token:  ## Unexpected token:  :smile_cat:
### Description In the case that a file was included that does not end with the `?>` character, then a fatal error occurs in the resulting template. Left column: partial...