Chromium Code Reviews| Index: Source/bindings/scripts/idl_parser.pm |
| diff --git a/Source/bindings/scripts/idl_parser.pm b/Source/bindings/scripts/idl_parser.pm |
| index 67ea502b7d1f2f82a2b9bd6c9e64d07023d0ed88..1876c404fcc9eb033b3895bf6c6b80105a5c3220 100644 |
| --- a/Source/bindings/scripts/idl_parser.pm |
| +++ b/Source/bindings/scripts/idl_parser.pm |
| @@ -1620,6 +1620,10 @@ sub parseExtendedAttributeRest2 |
| my $token = $self->getToken(); |
| return $token->value(); |
| } |
| + if ($next->type() == StringToken) { |
|
haraken
2014/01/09 10:19:05
Would you add a comment that this is a syntax exte
sof
2014/01/09 11:13:17
certainly; added.
I also added productions to the
|
| + my $token = $self->getToken(); |
| + return $self->parseExtendedAttributeRest3($self->unquoteString($token->value())); |
| + } |
| $self->assertUnexpectedToken($next->value(), __LINE__); |
| } |