Results 26 issues of Evan Martin

I published this two years ago, and lost interest in the project. Since then a few people have sent patches, but I don't know which patch to merge. If someone...

## 🐛 Bug Description The --format flag's possible values aren't described anywhere. twiggy version: twiggy-opt 0.6.0 #### 🌍 Test Case Upload the test case and link to it here. For...

bug

On ChromeOS (aka Google Chrome | 87.0.4280.109 (Official Build) (64-bit)) pages like https://jasmine.github.io/tutorials/your_first_suite use a variable-width (non code) font. Looking at the CSS, it's something about span having an explicit...

help needed

I looked at wasmparser and naively expected the API to work with a `std::io::BufReader` as input, rather than requiring the full file contents up front. Is there something fundamental to...

wasmparser

TypeScript added support for JSX: https://github.com/Microsoft/TypeScript/issues/3203 Briefly, this adds support for HTML-like literals in code: ``` var foo = blah; ``` typescript-mode currently doesn't indent such literals properly, in contexts...

help wanted

```js function foo() { let c = 3; switch (c) { case 4: let c = 5; break; } } ``` Expected: should be accepted Actual: JSC_REFERENCE_BEFORE_DECLARE_ERROR: Illegal variable reference...

ES6
P3

We primarily use Clutz within Google, which has a massive Closure JS codebase. Because of this, Clutz has a lot of tricky corner cases to work around issues that likely...

```js goog.module('demo'); /** * @typedef {{ * name: string, * container-url: string, * run-command: (string|undefined), * run-args: (string|undefined), * options: { * privileged: boolean * } * }} */ exports.X;...

We mark each `build` with its line number for use in error messages, but computing the line number requires keeping track of each newline we encounter. Some experiments: - if...

[Consolidating some comments from #107 and #108] Currently we read input files into a local buffer. I had thought this was better than mmap because: 1. we need a trailing...