Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(914)

Side by Side Diff: tools/idl_parser/test_parser/dictionary_web.idl

Issue 761903003: Update from https://crrev.com/306655 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/idl_parser/idl_parser.py ('k') | tools/idl_parser/test_parser/interface_web.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. */ 3 found in the LICENSE file. */
4 4
5 /* Test Dictionary productions 5 /* Test Dictionary productions
6 6
7 Run with --test to generate an AST and verify that all comments accurately 7 Run with --test to generate an AST and verify that all comments accurately
8 reflect the state of the Nodes. 8 reflect the state of the Nodes.
9 9
10 BUILD Type(Name) 10 BUILD Type(Name)
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 *Dictionary(MyDictNull) 85 *Dictionary(MyDictNull)
86 * Key(setString) 86 * Key(setString)
87 * Type() 87 * Type()
88 * PrimitiveType(DOMString) 88 * PrimitiveType(DOMString)
89 * Default(NULL) 89 * Default(NULL)
90 */ 90 */
91 dictionary MyDictNull { 91 dictionary MyDictNull {
92 DOMString? setString = null; 92 DOMString? setString = null;
93 }; 93 };
94 94
95 95 /* ERROR Unexpected keyword "attribute" after "{". */
96 dictionary MyDictUnexpectedAttribute {
97 attribute DOMString foo = "";
98 };
OLDNEW
« no previous file with comments | « tools/idl_parser/idl_parser.py ('k') | tools/idl_parser/test_parser/interface_web.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698