9fa3103539
We will need to revisit how dartdoc is generated. For now this is the minimal set of files to preserve hand-crafted documentation. Review URL: https://codereview.chromium.org//11090010 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@13378 260f80e4-7a28-3924-810f-c04153c831b5
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
// Copyright (c) 2012, 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.
|
|
|
|
// Fake dart:html library for documentation.
|
|
|
|
/// The Dart HTML5 Library.
|
|
#library("dart:html");
|
|
|
|
#source('interface/AbstractWorker.dartdoc');
|
|
#source('interface/Element.dartdoc');
|
|
#source('interface/Event.dartdoc');
|
|
#source('interface/EventTarget.dartdoc');
|
|
#source('interface/HttpRequest.dartdoc');
|
|
#source('interface/MouseEvent.dartdoc');
|
|
#source('interface/Storage.dartdoc');
|
|
#source('interface/Node.dartdoc');
|
|
#source('interface/UIEvent.dartdoc');
|
|
#source('interface/WebSocket.dartdoc');
|
|
|
|
// Implementation files that appear to be necessary to load the sources.
|
|
|
|
//#source('nodoc-src/SomeFile.dart');
|
|
|
|
// Global definitions.
|
|
|
|
/**
|
|
* The top-level Window object.
|
|
*/
|
|
Window get window() => null;
|
|
|
|
/**
|
|
* The top-level Document object.
|
|
*/
|
|
Document get document() => null;
|
|
|
|
typedef void EventListener(Event event);
|