blob: 3eb79471b936627c823346273deba6b3ae95150e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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) {
}
}
|