MCPcopy Index your code
hub / github.com/endbasic/endbasic / test_multiple_lines

Function test_multiple_lines

core/src/lexer.rs:841–850  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

839
840 #[test]
841 fn test_multiple_lines() {
842 do_ok_test(
843 " \n \t \n ",
844 &[ts(Token::Eol, 1, 4, 1), ts(Token::Eol, 2, 12, 1), ts(Token::Eof, 3, 3, 0)],
845 );
846 do_ok_test(
847 " : \t : ",
848 &[ts(Token::Eol, 1, 4, 1), ts(Token::Eol, 1, 12, 1), ts(Token::Eof, 1, 15, 0)],
849 );
850 }
851
852 #[test]
853 fn test_tabs() {

Callers

nothing calls this directly

Calls 2

tsFunction · 0.85
do_ok_testFunction · 0.70

Tested by

no test coverage detected