Alec Larson
Alec Larson
[As seen on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/super#Using_super.prop_in_object_literals). ```coffee obj1 = -> method1: -> console.log 'method1' obj2 = method2: -> super.method1() Object.setPrototypeOf obj2, obj1 obj2.method2() # logs "method1" ``` The `obj2` variable would transpile...
I use tabs instead of spaces in my code. I cannot test snippets of my code if there is indentation, because the multi-line mode reads tabs as if you're pressing...
For anyone interested, I've started converting this library to TypeScript: https://github.com/aleclarson/art/tree/typescript I probably won't finish it without help (PRs welcome), since I only need a small subset. - [x] `Transform`...
```sh cpx "src/**/*.{html,png,jpg}" "types/*" dist ```
**Please describe the feature/suggestion** More information for failed builds **Describe the solution you'd like** TBD **Describe any alternatives you've considered** Write a CLI that devs can use to reproduce bundlephobia's...
https://github.com/everdrone/react-native-squircle-view **PS:** I ported this library, `react-native-super-ellipse-mask`, to work on macOS via [my fork](https://github.com/alloc/react-native-macos) of `react-native-macos`. You can see the changes I made [here](https://github.com/aleclarson/react-native-super-ellipse-mask/commits/port/macos/macos/SuperEllipseMask.m) if interested. I even added `borderWidth`/`borderColor`...
The scopes at cursor are: `source.pug` `inline.pug` `invalid.illegal.tag.pug` You can find the affected test code here: https://github.com/genoma/language-pug/blob/25fb6981f6e1df892c73d52752dc25770482522e/test/test.jade#L246
In `test/test.jade`, you have: ```jade _test = [{abc: "lalal"}] name = function() {} ``` ..which now compiles to: ```html = [{abc: "lalal"}] = function() {} ``` ..in `pug v2.0.1`
``` ~/pug-cli/node_modules/pug-lexer/index.js:60 throw err; ^ Error: test.pug:213:44 211| div: span: em= 'extra spaces between tags and js output' 212| > 213| div(style="background-color: #ccf;"): p:.a subtag without spaces will work only...
``` ~/pug-cli/node_modules/pug-lexer/index.js:60 throw err; ^ Error: test.pug:78:7 76| 77| this is rendered as standalone text > 78| ##this too --------------^ 79| "this too" 80| 81| div(style="background-color: #eef") some examples of...