Highlight module names in 'use...as' statements

This commit is contained in:
Ben S
2015-02-21 13:27:05 +00:00
parent 2c05ab8682
commit 1154b0df63
2 changed files with 32 additions and 1 deletions

View File

@@ -118,3 +118,14 @@
macro_rules! parse {
($thing: expr) => { $thing };
}
// `use` statements
// ----------------
use flux;
use flux::capacitor;
use flux::capacitor::Component::*;
use flux::capacitor::Component::{ImpurePalladium, ThinkingAluminium, TimeyWimeyDevice};
use flux::capacitor as cap;
use super;
use self;