From a7354681702f8712ea5072f66d3a93a356111fce Mon Sep 17 00:00:00 2001 From: Raghuram Date: Sat, 1 Apr 2017 16:15:38 +0530 Subject: [PATCH] Fixes importing inline comments #13139 Signed-off-by: Raghuram Vadapalli --- src/Lexer.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Lexer.php b/src/Lexer.php index 2a3fea4da..95d0ad1ba 100644 --- a/src/Lexer.php +++ b/src/Lexer.php @@ -542,7 +542,6 @@ public function parseComment() if (Context::isComment($token)) { while ( ++$this->last < $this->len - && $this->str[$this->last] !== "\n" ) { $token .= $this->str[$this->last]; } @@ -611,7 +610,6 @@ public function parseComment() if ($this->str[$this->last] !== "\n") { while ( ++$this->last < $this->len - && $this->str[$this->last] !== "\n" ) { $token .= $this->str[$this->last]; }