Console.hx 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * Copyright (C)2005-2019 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. // This file is generated from mozilla\Console.webidl. Do not edit!
  23. package js.html;
  24. /**
  25. The `Console` object provides access to the browser's debugging console (e.g. the Web Console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided.
  26. Documentation [console](https://developer.mozilla.org/en-US/docs/Web/API/console) by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/console$history), licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
  27. @see <https://developer.mozilla.org/en-US/docs/Web/API/console>
  28. **/
  29. @:native("console")
  30. extern class Console {
  31. /**
  32. Log a message and stack trace to console if the first argument is `false`.
  33. **/
  34. static function assert( condition : Bool = false, data : haxe.extern.Rest<Dynamic> ) : Void;
  35. /**
  36. Clear the console.
  37. **/
  38. static function clear() : Void;
  39. /**
  40. Log the number of times this line has been called with the given label.
  41. **/
  42. static function count( label : String = "default" ) : Void;
  43. /**
  44. Resets the value of the counter with the given label.
  45. **/
  46. static function countReset( label : String = "default" ) : Void;
  47. /**
  48. Outputs a message to the console with the log level `"debug"`.
  49. Note: Starting with Chromium 58 this method only appears in Chromium browser consoles when level "Verbose" is selected.
  50. **/
  51. static function debug( data : haxe.extern.Rest<Dynamic> ) : Void;
  52. /**
  53. Outputs an error message. You may use string substitution and additional arguments with this method.
  54. **/
  55. static function error( data : haxe.extern.Rest<Dynamic> ) : Void;
  56. /**
  57. Informative logging of information. You may use string substitution and additional arguments with this method.
  58. **/
  59. static function info( data : haxe.extern.Rest<Dynamic> ) : Void;
  60. /**
  61. For general output of logging information. You may use string substitution and additional arguments with this method.
  62. **/
  63. static function log( data : haxe.extern.Rest<Dynamic> ) : Void;
  64. /**
  65. Displays tabular data as a table.
  66. **/
  67. static function table( data : haxe.extern.Rest<Dynamic> ) : Void;
  68. /**
  69. Outputs a stack trace.
  70. **/
  71. static function trace( data : haxe.extern.Rest<Dynamic> ) : Void;
  72. /**
  73. Outputs a warning message. You may use string substitution and additional arguments with this method.
  74. **/
  75. static function warn( data : haxe.extern.Rest<Dynamic> ) : Void;
  76. /**
  77. Displays an interactive listing of the properties of a specified JavaScript object. This listing lets you use disclosure triangles to examine the contents of child objects.
  78. **/
  79. static function dir( data : haxe.extern.Rest<Dynamic> ) : Void;
  80. /**
  81. Displays an XML/HTML Element representation of the specified object if possible or the JavaScript Object view if it is not possible.
  82. **/
  83. static function dirxml( data : haxe.extern.Rest<Dynamic> ) : Void;
  84. /**
  85. Creates a new inline group, indenting all following output by another level. To move back out a level, call `groupEnd()`.
  86. **/
  87. static function group( data : haxe.extern.Rest<Dynamic> ) : Void;
  88. /**
  89. Creates a new inline group, indenting all following output by another level. However, unlike `group()` this starts with the inline group collapsed requiring the use of a disclosure button to expand it. To move back out a level, call `groupEnd()`.
  90. **/
  91. static function groupCollapsed( data : haxe.extern.Rest<Dynamic> ) : Void;
  92. /**
  93. Exits the current inline group.
  94. **/
  95. static function groupEnd() : Void;
  96. /**
  97. Starts a timer with a name specified as an input parameter. Up to 10,000 simultaneous timers can run on a given page.
  98. **/
  99. static function time( label : String = "default" ) : Void;
  100. /**
  101. Logs the value of the specified timer to the console.
  102. **/
  103. static function timeLog( label : String = "default", data : haxe.extern.Rest<Dynamic> ) : Void;
  104. /**
  105. Stops the specified timer and logs the elapsed time in seconds since it started.
  106. **/
  107. static function timeEnd( label : String = "default" ) : Void;
  108. /**
  109. An alias for `error()`.
  110. **/
  111. static function exception( data : haxe.extern.Rest<Dynamic> ) : Void;
  112. /**
  113. Adds a marker to the browser's Timeline or Waterfall tool.
  114. **/
  115. static function timeStamp( ?data : Dynamic ) : Void;
  116. /**
  117. Starts the browser's built-in profiler (for example, the Firefox performance tool). You can specify an optional name for the profile.
  118. **/
  119. static function profile( data : haxe.extern.Rest<Dynamic> ) : Void;
  120. /**
  121. Stops the profiler. You can see the resulting profile in the browser's performance tool (for example, the Firefox performance tool).
  122. **/
  123. static function profileEnd( data : haxe.extern.Rest<Dynamic> ) : Void;
  124. }