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

Side by Side Diff: lib/html/doc/interface/JavaScriptCallFrame.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 JavaScriptCallFrame
10 interface JavaScriptCallFrame {
11
12 static final int CATCH_SCOPE = 4;
13
14 static final int CLOSURE_SCOPE = 3;
15
16 static final int GLOBAL_SCOPE = 0;
17
18 static final int LOCAL_SCOPE = 1;
19
20 static final int WITH_SCOPE = 2;
21
22 /** @domName JavaScriptCallFrame.caller */
23 final JavaScriptCallFrame caller;
24
25 /** @domName JavaScriptCallFrame.column */
26 final int column;
27
28 /** @domName JavaScriptCallFrame.functionName */
29 final String functionName;
30
31 /** @domName JavaScriptCallFrame.line */
32 final int line;
33
34 /** @domName JavaScriptCallFrame.scopeChain */
35 final List scopeChain;
36
37 /** @domName JavaScriptCallFrame.sourceID */
38 final int sourceID;
39
40 /** @domName JavaScriptCallFrame.thisObject */
41 final Object thisObject;
42
43 /** @domName JavaScriptCallFrame.type */
44 final String type;
45
46 /** @domName JavaScriptCallFrame.evaluate */
47 void evaluate(String script);
48
49 /** @domName JavaScriptCallFrame.scopeType */
50 int scopeType(int scopeIndex);
51 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/JavaScriptAudioNode.dartdoc ('k') | lib/html/doc/interface/KeyboardEvent.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698