| Index: mojom/mojom_parser/parser/parsing.go
|
| diff --git a/mojom/mojom_parser/parser/parsing.go b/mojom/mojom_parser/parser/parsing.go
|
| index e6abe75ca3fde176853216d7c23bdca54178d4b1..fde8e70173b863fcae8c57f71d0c92bf6490eaa2 100644
|
| --- a/mojom/mojom_parser/parser/parsing.go
|
| +++ b/mojom/mojom_parser/parser/parsing.go
|
| @@ -295,6 +295,7 @@ func (p *Parser) parseAttributes() (attributes *mojom.Attributes) {
|
| var value mojom.ConcreteValue
|
| if p.peekNextToken("Expecting to find an attribute value.").Kind == lexer.Name {
|
| text := p.readName()
|
| + // TODO(rudominer) Do not throw away the distinction between a name and a string literal.
|
| value = mojom.MakeStringLiteralValue(text)
|
| } else {
|
| value = p.parseLiteral()
|
|
|