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

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

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:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName Console
10 interface Console {
11
12 /** @domName Console.memory */
13 final MemoryInfo memory;
14
15 /** @domName Console.profiles */
16 final List<ScriptProfile> profiles;
17
18 /** @domName Console.assertCondition */
19 void assertCondition(bool condition, Object arg);
20
21 /** @domName Console.count */
22 void count();
23
24 /** @domName Console.debug */
25 void debug(Object arg);
26
27 /** @domName Console.dir */
28 void dir();
29
30 /** @domName Console.dirxml */
31 void dirxml();
32
33 /** @domName Console.error */
34 void error(Object arg);
35
36 /** @domName Console.group */
37 void group(Object arg);
38
39 /** @domName Console.groupCollapsed */
40 void groupCollapsed(Object arg);
41
42 /** @domName Console.groupEnd */
43 void groupEnd();
44
45 /** @domName Console.info */
46 void info(Object arg);
47
48 /** @domName Console.log */
49 void log(Object arg);
50
51 /** @domName Console.markTimeline */
52 void markTimeline();
53
54 /** @domName Console.profile */
55 void profile(String title);
56
57 /** @domName Console.profileEnd */
58 void profileEnd(String title);
59
60 /** @domName Console.time */
61 void time(String title);
62
63 /** @domName Console.timeEnd */
64 void timeEnd(String title, Object arg);
65
66 /** @domName Console.timeStamp */
67 void timeStamp(Object arg);
68
69 /** @domName Console.trace */
70 void trace(Object arg);
71
72 /** @domName Console.warn */
73 void warn(Object arg);
74 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/CompositionEvent.dartdoc ('k') | lib/html/doc/interface/ContentElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698