mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-10 20:36:21 +00:00
remove lines, add note about full test being disabled
This commit is contained in:
parent
62ec21584b
commit
54befc0384
2 changed files with 0 additions and 9 deletions
|
@ -256,25 +256,18 @@ impl Lexer {
|
|||
pub enum LexerError {
|
||||
#[error("empty token at line {0}")]
|
||||
EmptyToken(usize),
|
||||
|
||||
#[error("unexpected character '{0}' at line {1}")]
|
||||
UnexpectedCharacter(char, usize),
|
||||
|
||||
#[error("unexpected end of input")]
|
||||
UnexpectedEndOfInput,
|
||||
|
||||
#[error("source is empty")]
|
||||
EmptySource,
|
||||
|
||||
#[error("at beginning of source")]
|
||||
AtBeginningOfSource,
|
||||
|
||||
#[error("at end of source")]
|
||||
AtEndOfSource,
|
||||
|
||||
#[error("invalid character access")]
|
||||
InvalidCharacterAccess,
|
||||
|
||||
#[error("unexpected token type '{0:?}'")]
|
||||
UnexpectedTokenType(TokenType),
|
||||
}
|
||||
|
|
|
@ -639,8 +639,6 @@ mod tests {
|
|||
insta::assert_yaml_snapshot!(ast);
|
||||
}
|
||||
|
||||
// hangs for some reason
|
||||
#[test]
|
||||
fn test_parse_full() {
|
||||
let source = r#"<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue