James Zhu

Results 6 comments of James Zhu

In its current state a lot of the code hasn't been properly ported from the [language-java](https://github.com/atom/language-java) repo, hence the missing keywords. I'll see what I can cook up within the...

As per the [spec](http://dlang.org/lex.html), the keywords **impure** and **virtual** don't exist in D.

The state of implementation so far: **Keywords** - [x] in - [x] out - [x] inout - [x] immutable - [x] pure - [x] nothrow - [x] const - [x]...

New idea: define `_components` as follows: ``` d void[][] _components; ``` and storing the component-to-index mapping in a ``` d size_t[string] _componentTypes; ``` where the string key is obtained by...

This is a pretty valid question. Considering how it will reduce GC dependencies and there will probably be many, many Entities allocated over the course of a program, using a...

I managed to track down the exact problem. I've submitted a pull request to the language-c repo here: https://github.com/atom/language-c/pull/62 tl;dr it's a stray question mark causing the pattern `(` to...