Alexander Wu

Results 8 comments of Alexander Wu

@Month7 I don't think that works for my use case, since the editor must be converted to a proxy to be shared between Vue blocks (e.g. between setup, mounted, and...

Note: I ran into the same issue again, this time with context keys. Also fixed with freeze. ```javascript this.editor = Object.freeze(monaco.editor.create(element, {})); this.contextKey = Object.freeze(this.editor.createContextKey('myContextKey', false)); this.contextKey.set(true); ```

Since we don't want to allow customization of sample(), I scaled down the changes to only make a small refactor.

Tasks: 1. Port [Joseph's PR](https://github.com/arkworks-rs/algebra/pull/387) to master 2. Write general unit tests using small simple fields 3. Update test-curves to use faster algorithms (need to use Sage script), and benchmark...

I observed the error when you click on the cursor. It is expecting the div representing the cursor to have a non-null `firstChild`, causing the error. The error is still...

Fixed this by doing a Yarn patch, to add an additional try/catch inside the clause in the method `createMouseTarget` in `vscode/src/vs/editor/browser/controller/mouseTarget.js`. This prevents the error from surfacing, catching the error...