Sam Goto
Sam Goto
Per discussion on this [issue](https://github.com/sweet-js/sweet-core/issues/687#issuecomment-319207083), kicking off a separate one to ask advice on syntax feasibility and implementation strategies. I started exploring a DST for javascript along the lines of...
We have a really good checklist doc with a lot of great information. It would be great to see how this doc evolve to gather more information / unwritten rules...
Use this template to provide feedback on the new Blink launch process and Guide UX for editing features. **Process Feedback** > Was anything unclear? Is there something that you need...
I was wondering if any thought was put into how this fits with refactoring tools: could this make it easier to break code? For example, suppose I'm about to send...
I'm still struggling what problems this solves, can you help me enumerating some of the most compelling use cases this enables? You mentioned iter-ables/then-ables but this being a userland affordance,...
By reading the text, it would seem like it would, but wanted to sanity check: ```javascript let a = 1_cm; let b = 1_m; console.log(`${a.plus(b)} meters`); // prints 1.01_m ```...
On [W3C Personalization Tools 1.0](https://rawgit.com/w3c/personalization-semantics/thad-tools/tools/index.html), section 2.2 Reminders and Messages, you go: > For example, users can disable push notifications and messages on applications such as Skype and Facebook across...
Compiling here a list of alternatives one should consider / compare and contrast. @michael-n-cooper did a really good job comparing some serialization formats here: https://github.com/w3c/personalization-semantics/wiki/Comparison-of-ways-to-use-vocabulary-in-content I'm starting to compile different...
@dherman writes: ```javascript async function readstuff (cfg) { let fileA = null; unless (cfg.skipA) { fileA = await cfg.fileA; } // ... } ``` Are ```await``` allowed inside block params?...
This came up multiple times during the review, so kicking off a thread to allow commenting. The problem comes down to: If we bake this in, do we corner ourselves...