| Index: tools/json_schema_compiler/dart_test/basic_function.dart
|
| diff --git a/tools/json_schema_compiler/dart_test/basic_function.dart b/tools/json_schema_compiler/dart_test/basic_function.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3eb79471b936627c823346273deba6b3ae95150e
|
| --- /dev/null
|
| +++ b/tools/json_schema_compiler/dart_test/basic_function.dart
|
| @@ -0,0 +1,29 @@
|
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// Generated from namespace: basic_function
|
| +
|
| +part of chrome;
|
| +/**
|
| + * Functions
|
| + */
|
| +
|
| +class API_basic_function {
|
| + /*
|
| + * API connection
|
| + */
|
| + Object _jsObject;
|
| +
|
| + /*
|
| + * Functions
|
| + */
|
| + /// Documentation for the basic function, foo().
|
| + void foo() => JS('void', '#.foo()', this._jsObject);
|
| +
|
| + /// Documentation for the basic static function, staticFoo().
|
| + void staticFoo() => JS('void', '#.staticFoo()', this._jsObject);
|
| +
|
| + API_basic_function(this._jsObject) {
|
| + }
|
| +}
|
|
|