[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes importing inline comments #13139 #147

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixes importing inline comments #13139
Signed-off-by: Raghuram Vadapalli<raghuram.vadapalli@research.iiit.ac.in>
  • Loading branch information
Achilles-96 committed Apr 1, 2017
commit a7354681702f8712ea5072f66d3a93a356111fce
2 changes: 0 additions & 2 deletions src/Lexer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
Expand Down Expand Up @@ -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];
}
Expand Down