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

Side by Side Diff: tools/json_schema_compiler/dart_test/operatable_type.dart

Issue 12218151: Added unit tests for the Dart Chrome.* API wrappers. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove print statement if outputting to file. Created 7 years, 10 months 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
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Generated from namespace: operatable_type
6
7 part of chrome;
8
9 /**
10 * Types
11 */
12
13 class Operatable_typeOperatableType extends ChromeObject {
14 /*
15 * Private constructor
16 */
17 Operatable_typeOperatableType._proxy(_jsObject) : super._proxy(_jsObject);
18
19 /*
20 * Public accessors
21 */
22 /// Documentation for the String t.
23 String get t => JS('String', '#.t', this._jsObject);
24
25 void set t(String t) {
26 JS('void', '#.t = #', this._jsObject, t);
27 }
28
29
30 /*
31 * Methods
32 */
33 /// Documentation for staticFoo.
34 void staticFoo() => JS('void', '#.staticFoo()', this._jsObject);
35
36 }
37
38 /**
39 * Functions
40 */
41
42 class API_operatable_type {
43 /*
44 * API connection
45 */
46 Object _jsObject;
47 API_operatable_type(this._jsObject) {
48 }
49 }
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/dart_test/empty_type.idl ('k') | tools/json_schema_compiler/dart_test/operatable_type.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698