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

Side by Side Diff: lib/html/doc/interface/Console.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, 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 // WARNING: Do not edit - generated code.
6
7 /// @domName Console
8 interface Console {
9
10 /** @domName Console.memory */
11 final MemoryInfo memory;
12
13 /** @domName Console.profiles */
14 final List<ScriptProfile> profiles;
15
16 /** @domName Console.assertCondition */
17 void assertCondition(bool condition, Object arg);
18
19 /** @domName Console.count */
20 void count();
21
22 /** @domName Console.debug */
23 void debug(Object arg);
24
25 /** @domName Console.dir */
26 void dir();
27
28 /** @domName Console.dirxml */
29 void dirxml();
30
31 /** @domName Console.error */
32 void error(Object arg);
33
34 /** @domName Console.group */
35 void group(Object arg);
36
37 /** @domName Console.groupCollapsed */
38 void groupCollapsed(Object arg);
39
40 /** @domName Console.groupEnd */
41 void groupEnd();
42
43 /** @domName Console.info */
44 void info(Object arg);
45
46 /** @domName Console.log */
47 void log(Object arg);
48
49 /** @domName Console.markTimeline */
50 void markTimeline();
51
52 /** @domName Console.profile */
53 void profile(String title);
54
55 /** @domName Console.profileEnd */
56 void profileEnd(String title);
57
58 /** @domName Console.time */
59 void time(String title);
60
61 /** @domName Console.timeEnd */
62 void timeEnd(String title, Object arg);
63
64 /** @domName Console.timeStamp */
65 void timeStamp(Object arg);
66
67 /** @domName Console.trace */
68 void trace(Object arg);
69
70 /** @domName Console.warn */
71 void warn(Object arg);
72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698