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

Side by Side Diff: tools/json_schema_compiler/dart_test/basic_function.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: basic_function
6
7 part of chrome;
8 /**
9 * Functions
10 */
11
12 class API_basic_function {
13 /*
14 * API connection
15 */
16 Object _jsObject;
17
18 /*
19 * Functions
20 */
21 /// Documentation for the basic function, foo().
22 void foo() => JS('void', '#.foo()', this._jsObject);
23
24 /// Documentation for the basic static function, staticFoo().
25 void staticFoo() => JS('void', '#.staticFoo()', this._jsObject);
26
27 API_basic_function(this._jsObject) {
28 }
29 }
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/dart_test/basic_event.idl ('k') | tools/json_schema_compiler/dart_test/basic_function.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698