Ticket #3065 (assigned defect)

Opened 3 years ago

Last modified 2 years ago

property with a space won't parse in double quoted string

Reported by: tim Assigned to: tim (accepted)
Priority: high Milestone: 3.0.0 release
Component: Parser/Lexer Version: trunk
Severity: minor Keywords:
Cc:

Description (Last modified by weyrick)

this produces a parse error in pcc, works in php:

<?php

class foo {
  function foo() {
    $this -> foo = 22;
  }
}

$bar = new foo();
echo $bar -> foo . "\n";
echo "{$bar -> foo}\n";

?>


Change History

04/15/07 11:31:22 changed by weyrick

  • description changed.
  • component changed from Core to Parser/Lexer.
  • priority changed from normal to high.
  • version set to trunk.
  • milestone set to 3.0.0 release.
  • type set to defect.