We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa00ac7 commit 924e51cCopy full SHA for 924e51c
1 file changed
tests/LexTest.php
@@ -31,11 +31,14 @@ public function testComments(){
31
$this->lex_test("foo -- bar \n", array("foo"));
32
$this->lex_test("foo -- bar \n ", array("foo"));
33
34
-
35
$this->lex_test("foo/"."* hello *"."/ bar", array("foo", "bar"));
36
$this->lex_test("foo/"."*hello*"."/ bar", array("foo", "bar"));
37
$this->lex_test("foo/"."* hello \n world *"."/ bar", array("foo", "bar"));
38
$this->lex_test("foo/"."*hello \n world*"."/ bar", array("foo", "bar"));
+
39
+ $this->lex_test("foo/"."* hello", array("foo"));
40
+ $this->lex_test("foo/"."* hello *", array("foo"));
41
+ $this->lex_test("foo/"."* hello \n world", array("foo"));
42
}
43
44
public function testBacktickFields(){
0 commit comments