aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-05-23 19:18:22 +0100
committerAleksey Kladov <[email protected]>2019-05-23 19:19:54 +0100
commitf6d2c3f9d57df896b56b3a1e3213e609cb12a81d (patch)
tree4ef7c0d90da736e6c040a236e15319b067664217 /crates
parent1dc9adc6e27d603f05f794adda91bca8b6dec8ac (diff)
profile highlighting
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_ide_api/src/syntax_highlighting.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/syntax_highlighting.rs b/crates/ra_ide_api/src/syntax_highlighting.rs
index 77c9ae3b1..7bba7a550 100644
--- a/crates/ra_ide_api/src/syntax_highlighting.rs
+++ b/crates/ra_ide_api/src/syntax_highlighting.rs
@@ -2,6 +2,7 @@ use rustc_hash::FxHashSet;
2 2
3use ra_syntax::{ast, AstNode, TextRange, Direction, SyntaxKind, SyntaxKind::*, SyntaxElement, T}; 3use ra_syntax::{ast, AstNode, TextRange, Direction, SyntaxKind, SyntaxKind::*, SyntaxElement, T};
4use ra_db::SourceDatabase; 4use ra_db::SourceDatabase;
5use ra_prof::profile;
5 6
6use crate::{FileId, db::RootDatabase}; 7use crate::{FileId, db::RootDatabase};
7 8
@@ -27,6 +28,8 @@ fn is_control_keyword(kind: SyntaxKind) -> bool {
27} 28}
28 29
29pub(crate) fn highlight(db: &RootDatabase, file_id: FileId) -> Vec<HighlightedRange> { 30pub(crate) fn highlight(db: &RootDatabase, file_id: FileId) -> Vec<HighlightedRange> {
31 let _p = profile("highlight");
32
30 let source_file = db.parse(file_id); 33 let source_file = db.parse(file_id);
31 34
32 // Visited nodes to handle highlighting priorities 35 // Visited nodes to handle highlighting priorities