Peter Blackson

Results 31 issues of Peter Blackson

At every position I need to match longest tokens out of a given set. I have a parser that provides a set of acceptable tokens. So if an unexpected token...

WORK IN PROGRESS TODO * [ ] walk a folder that exists on the disk and dump a YAML description * [ ] migrate tests to the new Simple Concise...

How to reproduce: double click anywhere, then immediately zoom out by scrolling. The zoom changes completely, sometimes making the graph invisible.

Fixes #41 Example of an expected error that matches 2 actual errors ``` rust // Should get errors for both 'Some' and 'None' use std::option::Option::{Some, None}; //~ ERROR*2 unused import...

When multi-span messages are emitted, the compiler duplicates the message in the JSON output for each span. Compiletest recognizes the first message, and reports mismatch for the rest.

Not only it fails, but also it uses outdated crates that do not compile with recent `openssl` versions on my system. Example of failure https://travis-ci.org/contain-rs/bit-vec/jobs/533429609 ``` crusader: downloading reverse deps...

`BTree`s provide us with a handy `range` method. You may use `BTreeMap` with `enum StartOrEnd { Start, End }`. Then, a simple `map.range(start..end)` will give you an iterator over values...

Take a look at `truncate`: https://github.com/Aaronepower/region_buffer/blob/master/src/lib.rs#L184 Here, the `len > *end` condition can be changed to a `>=` Further, its documentation could be worded a bit more clearly. A test...