pbiggar / phc

A compiler for PHP
132 stars 37 forks source link

Comments associated with "else" #21

Open pbiggar opened 9 years ago

pbiggar commented 9 years ago
If an if-statement has a comment associated with the else part

if(..)
{

}
// do something else
else
{
  ..
}

that comment is associated with the first statement inside the else, instead:

if(..)
{
  ..
}
else
{
  // do something else
  ..
}

Original issue reported on code.google.com by edskodevries on 2007-04-14 15:53:41

pbiggar commented 9 years ago
(No text was entered with this change)

Original issue reported on code.google.com by paul.biggar on 2008-09-17 07:32:06