Gabriel Castro

Results 5 issues of Gabriel Castro

Solves #20 This drops the use of eval on versions of node that support setting function arity

ie. if I have the code ``` java @EFragment(R.layout.fragment_layout) public class MyFragment extends Fragment { @Nullable @FragmentArg String foo; @NonNull @FragmentArg String bar; } ``` create ``` java ... public...

Enhancement

When resolving references it would be useful to know when there is a schema that was an extended ref. Ie. given the following schema ```javascript { type: 'object', required: ['a'],...

Currently if there is a dangling symlink the server crashes. This makes dangling symlinks to return 404s

DiagnosticsCollection#Add() uses InsertSort, this causes a ton of memcopys on every error. This is O(n) for every error. Instead I moved the sort to lazily happen just before each GetDiagnostics...