rust-bison-skeleton icon indicating copy to clipboard operation
rust-bison-skeleton copied to clipboard

Results 2 rust-bison-skeleton issues
Sort by recently updated
recently updated
newest added

By changing `Loc` to be ```rust pub struct Loc { start: u32, // changed "begin" to "start" end: u32 } ``` you can actually swap out `Loc` altogether for `Range`....

As far as I can tell, the tokens appear in the following ways: 1. as constants on the `SymbolKind` struct 2. wrapped in `SymbolKind` in the array `SymbolKind::VALUES_` (which seems...