Remove DOC_COMMENT

Closes #166
This commit is contained in:
Jeremy A. Kolb 2018-10-31 17:38:18 -04:00
parent 2b210d98b8
commit 61580f3cb8
5 changed files with 3 additions and 6 deletions

View file

@ -19,7 +19,7 @@ pub(crate) struct SyntaxInfo {
impl SyntaxKind {
pub fn is_trivia(self) -> bool {
match self {
WHITESPACE | COMMENT | DOC_COMMENT => true,
WHITESPACE | COMMENT => true,
_ => false,
}
}