First commit
This commit is contained in:
41
hGameTest/node_modules/openfl/docs/pages/haxe/CallStack.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/CallStack.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.CallStack - API Reference</title><meta name="description" content="Get informations about the call stack."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> CallStack</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Get informations about the call stack.</p></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="wrapCallSite"></a><h3><p><code><span class="label">static</span><a href="../haxe/CallStack.html#wrapCallSite"><span class="identifier">wrapCallSite</span></a>:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a> ‑> <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></code></p></h3><p class="availability"><em>Available on HTML5</em></p><div class="doc"><p></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="callStack"></a><h3><p><code><span class="label">static</span><a href="#callStack"><span class="identifier">callStack</span></a> ():<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Elements return by CallStack methods." href="../haxe/StackItem.html">StackItem</a>></code></p></h3><div class="doc"><p>Return the call stack elements, or an empty array if not available.</p></div></div><div class="field "><a name="exceptionStack"></a><h3><p><code><span class="label">static</span><a href="#exceptionStack"><span class="identifier">exceptionStack</span></a> ():<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Elements return by CallStack methods." href="../haxe/StackItem.html">StackItem</a>></code></p></h3><div class="doc"><p>Return the exception stack : this is the stack elements between
|
||||
the place the last exception was thrown and the place it was
|
||||
caught, or an empty array if not available.</p></div></div><div class="field "><a name="toString"></a><h3><p><code><span class="label">static</span><a href="#toString"><span class="identifier">toString</span></a> (<span style="white-space:nowrap">stack:<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Elements return by CallStack methods." href="../haxe/StackItem.html">StackItem</a>></span>):<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Returns a representation of the stack as a printable string.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
49
hGameTest/node_modules/openfl/docs/pages/haxe/Constructible.html
generated
vendored
Normal file
49
hGameTest/node_modules/openfl/docs/pages/haxe/Constructible.html
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Constructible - API Reference</title><meta name="description" content="This type unifies with any instance of classes that have a constructor
|
||||
which"/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Constructible<<span class="type">T</span>>(<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4></h4><p><h4><small>import <a href="../haxe/Constraints.html">haxe.Constraints</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This type unifies with any instance of classes that have a constructor
|
||||
which</p>
|
||||
<pre><code>* is public and
|
||||
* unifies with the type used for type parameter `T`.
|
||||
</code></pre>
|
||||
<p>If a type parameter A is assigned to a type parameter B which is constrained
|
||||
to <code><a href="../haxe/Constructible.html">Constructible</a><T></code>, A must be explicitly constrained to
|
||||
<code><a href="../haxe/Constructible.html">Constructible</a><T></code> as well.</p>
|
||||
<p>It is intended to be used as a type parameter constraint. If used as a real
|
||||
type, the underlying type will be <code><a href="../Dynamic.html">Dynamic</a></code>.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
43
hGameTest/node_modules/openfl/docs/pages/haxe/DynamicAccess.html
generated
vendored
Normal file
43
hGameTest/node_modules/openfl/docs/pages/haxe/DynamicAccess.html
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.DynamicAccess - API Reference</title><meta name="description" content="DynamicAccess is an abstract type for working with anonymous structures
|
||||
that are intended to hold collections of objects by the string key."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> DynamicAccess<<span class="type">T</span>>(<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a><<span class="type">T</span>>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4><small>from <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a><<span class="type">T</span>></small><small> to <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a><<span class="type">T</span>></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>DynamicAccess is an abstract type for working with anonymous structures
|
||||
that are intended to hold collections of objects by the string key.</p>
|
||||
<p>For example, these types of structures are often created from JSON.</p>
|
||||
<p>Basically, it wraps <code><a href="../Reflect.html">Reflect</a></code> calls in a <code><a href="../Map.html">Map</a></code>-like interface.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
47
hGameTest/node_modules/openfl/docs/pages/haxe/EnumFlags.html
generated
vendored
Normal file
47
hGameTest/node_modules/openfl/docs/pages/haxe/EnumFlags.html
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.EnumFlags - API Reference</title><meta name="description" content="A typed interface for bit flags. This is not a real object, only a typed
|
||||
interface for an actual Int. Each flag can be tested/set with the
|
||||
corresponding enum instance. Up to 32 flags can be stored that way."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> EnumFlags<<span class="type">T</span>>(<a class="type" title="The standard Int type." href="../Int.html">Int</a>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>A typed interface for bit flags. This is not a real object, only a typed
|
||||
interface for an actual Int. Each flag can be tested/set with the
|
||||
corresponding enum instance. Up to 32 flags can be stored that way.</p>
|
||||
<p>Enum constructor indices are preserved from Haxe syntax, so the first
|
||||
declared is index 0, the next index 1 etc. The methods are optimized if the
|
||||
enum instance is passed directly, e.g. as has(EnumCtor). Otherwise
|
||||
Type.enumIndex() reflection is used.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
78
hGameTest/node_modules/openfl/docs/pages/haxe/EnumTools.html
generated
vendored
Normal file
78
hGameTest/node_modules/openfl/docs/pages/haxe/EnumTools.html
generated
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.EnumTools - API Reference</title><meta name="description" content="This class provides advanced methods on enums. It is ideally used with
|
||||
<code>using <a href="../haxe/EnumTools.html">EnumTools</a></code> and then acts as an
|
||||
<a href="https://haxe.org/manual/lf-static-extension.html">extension</a> to the
|
||||
<code>enum</code> types."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> EnumTools</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This class provides advanced methods on enums. It is ideally used with
|
||||
<code>using <a href="../haxe/EnumTools.html">EnumTools</a></code> and then acts as an
|
||||
<a href="https://haxe.org/manual/lf-static-extension.html">extension</a> to the
|
||||
<code>enum</code> types.</p>
|
||||
<p>If the first argument to any of the methods is null, the result is
|
||||
unspecified.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="createAll"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#createAll"><span class="identifier">createAll</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents an Enum type." href="../Enum.html">Enum</a><<span class="type">T</span>></span>):<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<span class="type">T</span>></code></p></h3><div class="doc"><p>Returns a list of all constructors of enum <code>e</code> that require no
|
||||
arguments.</p>
|
||||
<p>This may return the empty Array <code>[]</code> if all constructors of <code>e</code> require
|
||||
arguments.</p>
|
||||
<p>Otherwise an instance of <code>e</code> constructed through each of its non-
|
||||
argument constructors is returned, in the order of the constructor
|
||||
declaration.</p>
|
||||
<p>If <code>e</code> is <code>null</code>, the result is unspecified.</p></div></div><div class="field "><a name="createByIndex"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#createByIndex"><span class="identifier">createByIndex</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents an Enum type." href="../Enum.html">Enum</a><<span class="type">T</span>>,</span> <span style="white-space:nowrap">index:<a class="type" title="The standard Int type." href="../Int.html">Int</a>,</span> <span style="white-space:nowrap">?params:<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>></span>):<span class="type">T</span></code></p></h3><div class="doc"><p>Creates an instance of enum <code>e</code> by calling its constructor number
|
||||
<code>index</code> with arguments <code>params</code>.</p>
|
||||
<p>The constructor indices are preserved from Haxe syntax, so the first
|
||||
declared is index 0, the next index 1 etc.</p>
|
||||
<p>If <code>e</code> or <code>index</code> is <code>null</code>, or if enum <code>e</code> has no constructor
|
||||
corresponding to index <code>index</code>, or if the number of elements in <code>params</code>
|
||||
does not match the expected number of constructor arguments, or if any
|
||||
argument has an invalid type, the result is unspecified.</p></div></div><div class="field "><a name="createByName"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#createByName"><span class="identifier">createByName</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents an Enum type." href="../Enum.html">Enum</a><<span class="type">T</span>>,</span> <span style="white-space:nowrap">constr:<a class="type" title="The basic String class." href="../String.html">String</a>,</span> <span style="white-space:nowrap">?params:<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>></span>):<span class="type">T</span></code></p></h3><div class="doc"><p>Creates an instance of enum <code>e</code> by calling its constructor <code>constr</code> with
|
||||
arguments <code>params</code>.</p>
|
||||
<p>If <code>e</code> or <code>constr</code> is <code>null</code>, or if enum <code>e</code> has no constructor named
|
||||
<code>constr</code>, or if the number of elements in <code>params</code> does not match the
|
||||
expected number of constructor arguments, or if any argument has an
|
||||
invalid type, the result is unspecified.</p></div></div><div class="field "><a name="getConstructors"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#getConstructors"><span class="identifier">getConstructors</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents an Enum type." href="../Enum.html">Enum</a><<span class="type">T</span>></span>):<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="The basic String class." href="../String.html">String</a>></code></p></h3><div class="doc"><p>Returns a list of the names of all constructors of enum <code>e</code>.</p>
|
||||
<p>The order of the constructor names in the returned Array is preserved
|
||||
from the original syntax.</p>
|
||||
<p>If <code>c</code> is <code>null</code>, the result is unspecified.</p></div></div><div class="field "><a name="getName"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#getName"><span class="identifier">getName</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents an Enum type." href="../Enum.html">Enum</a><<span class="type">T</span>></span>):<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Returns the name of enum <code>e</code>, including its path.</p>
|
||||
<p>If <code>e</code> is inside a package, the package structure is returned dot-
|
||||
separated, with another dot separating the enum name:</p>
|
||||
<pre><code>pack1.pack2.(...).packN.EnumName
|
||||
</code></pre>
|
||||
<p>If <code>e</code> is a sub-type of a Haxe module, that module is not part of the
|
||||
package structure.</p>
|
||||
<p>If <code>e</code> has no package, the enum name is returned.</p>
|
||||
<p>If <code>e</code> is <code>null</code>, the result is unspecified.</p>
|
||||
<p>The enum name does not include any type parameters.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
75
hGameTest/node_modules/openfl/docs/pages/haxe/EnumValueTools.html
generated
vendored
Normal file
75
hGameTest/node_modules/openfl/docs/pages/haxe/EnumValueTools.html
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.EnumValueTools - API Reference</title><meta name="description" content="This class provides advanced methods on enum values. It is ideally used with
|
||||
<code>using <a href="../haxe/EnumValueTools.html">EnumValueTools</a></code> and then acts as an
|
||||
<a href="https://haxe.org/manual/lf-static-extension.html">extension</a> to the
|
||||
<code><a href="../EnumValue.html">EnumValue</a></code> types."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> EnumValueTools</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p><h4><small>import <a href="../haxe/EnumTools.html">haxe.EnumTools</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This class provides advanced methods on enum values. It is ideally used with
|
||||
<code>using <a href="../haxe/EnumValueTools.html">EnumValueTools</a></code> and then acts as an
|
||||
<a href="https://haxe.org/manual/lf-static-extension.html">extension</a> to the
|
||||
<code><a href="../EnumValue.html">EnumValue</a></code> types.</p>
|
||||
<p>If the first argument to any of the methods is null, the result is
|
||||
unspecified.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="equals"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#equals"><span class="identifier">equals</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">a:<span class="type">T</span>,</span> <span style="white-space:nowrap">b:<span class="type">T</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Recursively compares two enum instances <code>a</code> and <code>b</code> by value.</p>
|
||||
<p>Unlike <code>a == b</code>, this function performs a deep equality check on the
|
||||
arguments of the constructors (if there are any).</p>
|
||||
<p>If <code>a</code> or <code>b</code> are <code>null</code>, the result is unspecified.</p></div></div><div class="field "><a name="getIndex"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#getIndex"><span class="identifier">getIndex</span></a> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents any enum value." href="../EnumValue.html">EnumValue</a></span>):<a class="type" title="The standard Int type." href="../Int.html">Int</a></code></p></h3><div class="doc"><p>Returns the index of enum instance <code>e</code>.</p>
|
||||
<p>This corresponds to the original syntactic position of <code>e</code>. The index of
|
||||
the first declared constructor is 0, the next one is 1 etc.</p>
|
||||
<p>If <code>e</code> is <code>null</code>, the result is unspecified.</p></div></div><div class="field "><a name="getName"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#getName"><span class="identifier">getName</span></a> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents any enum value." href="../EnumValue.html">EnumValue</a></span>):<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Returns the constructor name of enum instance <code>e</code>.</p>
|
||||
<p>The result String does not contain any constructor arguments.</p>
|
||||
<p>If <code>e</code> is <code>null</code>, the result is unspecified.</p></div></div><div class="field "><a name="getParameters"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#getParameters"><span class="identifier">getParameters</span></a> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents any enum value." href="../EnumValue.html">EnumValue</a></span>):<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>></code></p></h3><div class="doc"><p>Returns a list of the constructor arguments of enum instance <code>e</code>.</p>
|
||||
<p>If <code>e</code> has no arguments, the result is <code>[]</code>.</p>
|
||||
<p>Otherwise the result are the values that were used as arguments to <code>e</code>,
|
||||
in the order of their declaration.</p>
|
||||
<p>If <code>e</code> is <code>null</code>, the result is unspecified.</p></div></div><div class="field "><a name="match"></a><h3><p><code><span class="label">static</span><a href="#match"><span class="identifier">match</span></a> (<span style="white-space:nowrap">e:<a class="type" title="An abstract type that represents any enum value." href="../EnumValue.html">EnumValue</a>,</span> <span style="white-space:nowrap">pattern:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Matches enum instance <code>e</code> against pattern <code>pattern</code>, returning <code>true</code> if
|
||||
matching succeeded and <code>false</code> otherwise.</p>
|
||||
<p>Example usage:</p>
|
||||
<pre><code class="prettyprint haxe">if (e.match(pattern)) {
|
||||
// codeIfTrue
|
||||
} else {
|
||||
// codeIfFalse
|
||||
}</code></pre>
|
||||
<p>This is equivalent to the following code:</p>
|
||||
<pre><code class="prettyprint haxe">switch (e) {
|
||||
case pattern:
|
||||
// codeIfTrue
|
||||
case _:
|
||||
// codeIfFalse
|
||||
}</code></pre>
|
||||
<p>This method is implemented in the compiler. This definition exists only
|
||||
for documentation.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
43
hGameTest/node_modules/openfl/docs/pages/haxe/FlatEnum.html
generated
vendored
Normal file
43
hGameTest/node_modules/openfl/docs/pages/haxe/FlatEnum.html
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.FlatEnum - API Reference</title><meta name="description" content="This type unifies with an enum instance if all constructors of the enum
|
||||
require no arguments."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> FlatEnum(<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4></h4><p><h4><small>import <a href="../haxe/Constraints.html">haxe.Constraints</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This type unifies with an enum instance if all constructors of the enum
|
||||
require no arguments.</p>
|
||||
<p>It is intended to be used as a type parameter constraint. If used as a real
|
||||
type, the underlying type will be <code><a href="../Dynamic.html">Dynamic</a></code>.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/Function.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/Function.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Function - API Reference</title><meta name="description" content="This type unifies with any function type."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Function(<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4></h4><p><h4><small>import <a href="../haxe/Constraints.html">haxe.Constraints</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This type unifies with any function type.</p>
|
||||
<p>It is intended to be used as a type parameter constraint. If used as a real
|
||||
type, the underlying type will be <code><a href="../Dynamic.html">Dynamic</a></code>.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/IMap.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/IMap.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.IMap - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>interface</small> IMap<<span class="type">K</span>, <span class="type">V</span>></h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p><h4><small>import <a href="../haxe/Constraints.html">haxe.Constraints</a></small></h4></p><h4><small><span class="muted">implemented by </span><a class="type" title="EnumValueMap allows mapping of enum value keys to arbitrary values." href="../haxe/ds/EnumValueMap.html">EnumValueMap</a>, <a class="type" title="IntMap allows mapping of Int keys to arbitrary values." href="../haxe/ds/IntMap.html">IntMap</a>, <a class="type" title="ObjectMap allows mapping of object keys to arbitrary values." href="../haxe/ds/ObjectMap.html">ObjectMap</a>, <a class="type" title="StringMap allows mapping of String keys to arbitrary values." href="../haxe/ds/StringMap.html">StringMap</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="exists"></a><h3><p><code><a href="#exists"><span class="identifier">exists</span></a> (<span style="white-space:nowrap">k:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">k:<span class="type">K</span></span>):<a class="type" title="Null can be useful in two cases." href="../Null.html">Null</a><<span class="type">V</span>></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="iterator"></a><h3><p><code><a href="#iterator"><span class="identifier">iterator</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../Iterator.html">Iterator</a><<span class="type">V</span>></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="keys"></a><h3><p><code><a href="#keys"><span class="identifier">keys</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../Iterator.html">Iterator</a><<span class="type">K</span>></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">k:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">k:<span class="type">K</span>,</span> <span style="white-space:nowrap">v:<span class="type">V</span></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/Int32.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/Int32.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Int32 - API Reference</title><meta name="description" content="Int32 provides a 32-bit integer with consistent overflow behavior across
|
||||
all platforms."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Int32(<a class="type" title="The standard Int type." href="../Int.html">Int</a>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4><small>from <a class="type" title="The standard Int type." href="../Int.html">Int</a></small><small> to <a class="type" title="The standard Int type." href="../Int.html">Int</a>, </small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Int32 provides a 32-bit integer with consistent overflow behavior across
|
||||
all platforms.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="ucompare"></a><h3><p><code><span class="label">static</span><a href="#ucompare"><span class="identifier">ucompare</span></a> (<span style="white-space:nowrap">a:<a class="type" title="Int32 provides a 32-bit integer with consistent overflow behavior across all platforms." href="../haxe/Int32.html">Int32</a>,</span> <span style="white-space:nowrap">b:<a class="type" title="Int32 provides a 32-bit integer with consistent overflow behavior across all platforms." href="../haxe/Int32.html">Int32</a></span>):<a class="type" title="The standard Int type." href="../Int.html">Int</a></code></p></h3><div class="doc"><p>Compare <code>a</code> and <code>b</code> in unsigned mode.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/Int64.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/Int64.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Int64 - API Reference</title><meta name="description" content="A cross-platform signed 64-bit integer.
|
||||
Int64 instances can be created from two 32-bit words using <code><a href="../haxe/Int64.html#make">Int64.make</a>()</code>."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Int64(<span class="type">__Int64</span>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4><small>from <span class="type">__Int64</span>, </small><small> to <span class="type">__Int64</span></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>A cross-platform signed 64-bit integer.
|
||||
Int64 instances can be created from two 32-bit words using <code><a href="../haxe/Int64.html#make">Int64.make</a>()</code>.</p></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="high"></a><h3><p><code><span class="label">read only</span><a href="../haxe/_Int64/Int64_Impl_.html#high"><span class="identifier">high</span></a>:<a class="type" title="Int32 provides a 32-bit integer with consistent overflow behavior across all platforms." href="../haxe/Int32.html">Int32</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="low"></a><h3><p><code><span class="label">read only</span><a href="../haxe/_Int64/Int64_Impl_.html#low"><span class="identifier">low</span></a>:<a class="type" title="Int32 provides a 32-bit integer with consistent overflow behavior across all platforms." href="../haxe/Int32.html">Int32</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
51
hGameTest/node_modules/openfl/docs/pages/haxe/Json.html
generated
vendored
Normal file
51
hGameTest/node_modules/openfl/docs/pages/haxe/Json.html
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Json - API Reference</title><meta name="description" content="Cross-platform JSON API: it will automatically use the optimized native API if available.
|
||||
Use <code>-D haxeJSON</code> to force usage of the Haxe implementation even if a native API is found:
|
||||
This will provide extra encoding features such as enums (replaced by their index) and StringMaps."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Json</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on Flash, HTML5</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Cross-platform JSON API: it will automatically use the optimized native API if available.
|
||||
Use <code>-D haxeJSON</code> to force usage of the Haxe implementation even if a native API is found:
|
||||
This will provide extra encoding features such as enums (replaced by their index) and StringMaps.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Json.html">https://haxe.org/manual/std-Json.html</a></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="parse"></a><h3><p><code><span class="label">static</span><a href="#parse"><span class="identifier">parse</span></a> (<span style="white-space:nowrap">text:<a class="type" title="The basic String class." href="../String.html">String</a></span>):<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></code></p></h3><div class="doc"><p>Parses given JSON-encoded <code>text</code> and returns the resulting object.</p>
|
||||
<p>JSON objects are parsed into anonymous structures and JSON arrays
|
||||
are parsed into <code><a href="../Array.html">Array</a><<a href="../Dynamic.html">Dynamic</a>></code>.</p>
|
||||
<p>If given <code>text</code> is not valid JSON, an exception will be thrown.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Json-parsing.html">https://haxe.org/manual/std-Json-parsing.html</a></p></div></div></div><div class="field "><a name="stringify"></a><h3><p><code><span class="label">static</span><a href="#stringify"><span class="identifier">stringify</span></a> (<span style="white-space:nowrap">value:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>,</span> <span style="white-space:nowrap">?replacer:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a> ‑> <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a> ‑> <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>,</span> <span style="white-space:nowrap">?space:<a class="type" title="The basic String class." href="../String.html">String</a></span>):<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Encodes the given <code>value</code> and returns the resulting JSON string.</p>
|
||||
<p>If <code>replacer</code> is given and is not null, it is used to retrieve the
|
||||
actual object to be encoded. The <code>replacer</code> function takes two parameters,
|
||||
the key and the value being encoded. Initial key value is an empty string.</p>
|
||||
<p>If <code>space</code> is given and is not null, the result will be pretty-printed.
|
||||
Successive levels will be indented by this string.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Json-encoding.html">https://haxe.org/manual/std-Json-encoding.html</a></p></div></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
53
hGameTest/node_modules/openfl/docs/pages/haxe/Log.html
generated
vendored
Normal file
53
hGameTest/node_modules/openfl/docs/pages/haxe/Log.html
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Log - API Reference</title><meta name="description" content="Log primarily provides the <code>trace()</code> method, which is invoked upon a call to
|
||||
<code>trace()</code> in Haxe code."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Log</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Log primarily provides the <code>trace()</code> method, which is invoked upon a call to
|
||||
<code>trace()</code> in Haxe code.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="trace"></a><h3><p><code><span class="label">static</span><span class="label">dynamic</span> <a href="#trace"><span class="identifier">trace</span></a> (<span style="white-space:nowrap">v:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>,</span> <span style="white-space:nowrap">?infos:<a class="type" title="PosInfos is a magic type which can be used to generate position information into the output for debugging use." href="../haxe/PosInfos.html">PosInfos</a></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p>Outputs <code>v</code> in a platform-dependent way.</p>
|
||||
<p>The second parameter <code>infos</code> is injected by the compiler and contains
|
||||
information about the position where the <code>trace()</code> call was made.</p>
|
||||
<p>This method can be rebound to a custom function:</p>
|
||||
<pre><code>var oldTrace = haxe.Log.trace; // store old function
|
||||
haxe.Log.trace = function(v, ?infos) {
|
||||
// handle trace
|
||||
}
|
||||
...
|
||||
haxe.Log.trace = oldTrace;
|
||||
</code></pre>
|
||||
<p>If it is bound to null, subsequent calls to <code>trace()</code> will cause an
|
||||
exception.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
46
hGameTest/node_modules/openfl/docs/pages/haxe/PosInfos.html
generated
vendored
Normal file
46
hGameTest/node_modules/openfl/docs/pages/haxe/PosInfos.html
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.PosInfos - API Reference</title><meta name="description" content="PosInfos is a magic type which can be used to generate position information
|
||||
into the output for debugging use."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> PosInfos</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>PosInfos is a magic type which can be used to generate position information
|
||||
into the output for debugging use.</p>
|
||||
<p>If a function has a final optional argument of this type, i.e.
|
||||
(..., ?pos:haxe.PosInfos), each call to that function which does not assign
|
||||
a value to that argument has its position added as call argument.</p>
|
||||
<p>This can be used to track positions of calls in e.g. a unit testing
|
||||
framework.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="className"></a><h3><p><code><a href="../haxe/PosInfos.html#className"><span class="identifier">className</span></a>:<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="customParams"></a><h3><p><code><a href="../haxe/PosInfos.html#customParams"><span class="identifier">customParams</span></a>:<a class="type" title="Null can be useful in two cases." href="../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../Array.html">Array</a><<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>>></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="fileName"></a><h3><p><code><a href="../haxe/PosInfos.html#fileName"><span class="identifier">fileName</span></a>:<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="lineNumber"></a><h3><p><code><a href="../haxe/PosInfos.html#lineNumber"><span class="identifier">lineNumber</span></a>:<a class="type" title="The standard Int type." href="../Int.html">Int</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="methodName"></a><h3><p><code><a href="../haxe/PosInfos.html#methodName"><span class="identifier">methodName</span></a>:<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
77
hGameTest/node_modules/openfl/docs/pages/haxe/Serializer.html
generated
vendored
Normal file
77
hGameTest/node_modules/openfl/docs/pages/haxe/Serializer.html
generated
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Serializer - API Reference</title><meta name="description" content="The Serializer class can be used to encode values and objects into a <code><a href="../String.html">String</a></code>,
|
||||
from which the <code><a href="../haxe/Unserializer.html">Unserializer</a></code> class can recreate the original representation."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Serializer</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The Serializer class can be used to encode values and objects into a <code><a href="../String.html">String</a></code>,
|
||||
from which the <code><a href="../haxe/Unserializer.html">Unserializer</a></code> class can recreate the original representation.</p>
|
||||
<p>This class can be used in two ways:</p><ul><li>create a <code>new <a href="../haxe/Serializer.html">Serializer</a>()</code> instance, call its <code>serialize()</code> method with
|
||||
any argument and finally retrieve the String representation from
|
||||
<code>toString()</code></li><li>call <code><a href="../haxe/Serializer.html#run">Serializer.run</a>()</code> to obtain the serialized representation of a
|
||||
single argument</li></ul>
|
||||
<p>Serialization is guaranteed to work for all haxe-defined classes, but may
|
||||
or may not work for instances of external/native classes.</p>
|
||||
<p>The specification of the serialization format can be found here:
|
||||
<a href="https://haxe.org/manual/serialization/format">https://haxe.org/manual/serialization/format</a></p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p>Creates a new Serializer instance.</p>
|
||||
<p>Subsequent calls to <code>this.<a href="#serialize">serialize</a></code> will append values to the
|
||||
internal buffer of this String. Once complete, the contents can be
|
||||
retrieved through a call to <code>this.<a href="#toString">toString</a></code>.</p>
|
||||
<p>Each Serializer instance maintains its own cache if this.useCache` is
|
||||
true.</p></div></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="useCache"></a><h3><p><code><a href="../haxe/Serializer.html#useCache"><span class="identifier">useCache</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></p></h3><div class="doc"><p>The individual cache setting for <code>this</code> Serializer instance.</p>
|
||||
<p>See USE_CACHE for a complete description.</p></div></div><div class="field "><a name="useEnumIndex"></a><h3><p><code><a href="../haxe/Serializer.html#useEnumIndex"><span class="identifier">useEnumIndex</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a></code></p></h3><div class="doc"><p>The individual enum index setting for <code>this</code> Serializer instance.</p>
|
||||
<p>See USE_ENUM_INDEX for a complete description.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="serialize"></a><h3><p><code><a href="#serialize"><span class="identifier">serialize</span></a> (<span style="white-space:nowrap">v:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p>Serializes <code>v</code>.</p>
|
||||
<p>All haxe-defined values and objects with the exception of functions can
|
||||
be serialized. Serialization of external/native objects is not
|
||||
guaranteed to work.</p>
|
||||
<p>The values of <code>this.<a href="#useCache">useCache</a></code> and <code>this.<a href="#useEnumIndex">useEnumIndex</a></code> may affect
|
||||
serialization output.</p></div></div><div class="field "><a name="serializeException"></a><h3><p><code><a href="#serializeException"><span class="identifier">serializeException</span></a> (<span style="white-space:nowrap">e:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Return the String representation of <code>this</code> Serializer.</p>
|
||||
<p>The exact format specification can be found here:
|
||||
https://haxe.org/manual/serialization/format</p></div></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="USE_CACHE"></a><h3><p><code><span class="label">static</span><a href="../haxe/Serializer.html#USE_CACHE"><span class="identifier">USE_CACHE</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a><span> = false</span></code></p></h3><div class="doc"><p>If the values you are serializing can contain circular references or
|
||||
objects repetitions, you should set <code>USE_CACHE</code> to true to prevent
|
||||
infinite loops.</p>
|
||||
<p>This may also reduce the size of serialization Strings at the expense of
|
||||
performance.</p>
|
||||
<p>This value can be changed for individual instances of Serializer by
|
||||
setting their useCache field.</p></div></div><div class="field "><a name="USE_ENUM_INDEX"></a><h3><p><code><span class="label">static</span><a href="../haxe/Serializer.html#USE_ENUM_INDEX"><span class="identifier">USE_ENUM_INDEX</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../Bool.html">Bool</a><span> = false</span></code></p></h3><div class="doc"><p>Use constructor indexes for enums instead of names.</p>
|
||||
<p>This may reduce the size of serialization Strings, but makes them less
|
||||
suited for long-term storage: If constructors are removed or added from
|
||||
the enum, the indices may no longer match.</p>
|
||||
<p>This value can be changed for individual instances of Serializer by
|
||||
setting their useEnumIndex field.</p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="run"></a><h3><p><code><span class="label">static</span><a href="#run"><span class="identifier">run</span></a> (<span style="white-space:nowrap">v:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></span>):<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Serializes <code>v</code> and returns the String representation.</p>
|
||||
<p>This is a convenience function for creating a new instance of
|
||||
Serializer, serialize <code>v</code> into it and obtain the result through a call
|
||||
to toString().</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/StackItem.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/StackItem.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.StackItem - API Reference</title><meta name="description" content="Elements return by <code><a href="../haxe/CallStack.html">CallStack</a></code> methods."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>enum</small> StackItem</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><p><h4><small>import <a href="../haxe/CallStack.html">haxe.CallStack</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Elements return by <code><a href="../haxe/CallStack.html">CallStack</a></code> methods.</p></div></div><h3 class="section">Values</h3><div class="fields"><div class="field"><h3><code><a name="CFunction" href="#CFunction"><span class="identifier">CFunction</span></a></code></h3><div class="doc"><p></p></div></div><div class="field"><h3><code><a name="Module" href="#Module"><span class="identifier">Module</span></a>(m:<a class="type" title="The basic String class." href="../String.html">String</a>)</code></h3><div class="doc"><p></p></div></div><div class="field"><h3><code><a name="FilePos" href="#FilePos"><span class="identifier">FilePos</span></a>(s:<a class="type" title="Null can be useful in two cases." href="../Null.html">Null</a><<a class="type" title="Elements return by CallStack methods." href="../haxe/StackItem.html">StackItem</a>>, file:<a class="type" title="The basic String class." href="../String.html">String</a>, line:<a class="type" title="The standard Int type." href="../Int.html">Int</a>)</code></h3><div class="doc"><p></p></div></div><div class="field"><h3><code><a name="Method" href="#Method"><span class="identifier">Method</span></a>(classname:<a class="type" title="The basic String class." href="../String.html">String</a>, method:<a class="type" title="The basic String class." href="../String.html">String</a>)</code></h3><div class="doc"><p></p></div></div><div class="field"><h3><code><a name="LocalFunction" href="#LocalFunction"><span class="identifier">LocalFunction</span></a>(v:<a class="type" title="The standard Int type." href="../Int.html">Int</a>)</code></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
59
hGameTest/node_modules/openfl/docs/pages/haxe/Template.html
generated
vendored
Normal file
59
hGameTest/node_modules/openfl/docs/pages/haxe/Template.html
generated
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Template - API Reference</title><meta name="description" content="Template provides a basic templating mechanism to replace values in a source
|
||||
String, and to have some basic logic."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Template</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Template provides a basic templating mechanism to replace values in a source
|
||||
String, and to have some basic logic.</p>
|
||||
<p>A complete documentation of the supported syntax is available at:
|
||||
<a href="http://haxe.org/manual/std-template.html">http://haxe.org/manual/std-template.html</a></p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">str:<a class="type" title="The basic String class." href="../String.html">String</a></span>)</code></p></h3><div class="doc"><p>Creates a new Template instance from <code>str</code>.</p>
|
||||
<p><code>str</code> is parsed into tokens, which are stored for internal use. This
|
||||
means that multiple execute() operations on a single Template instance
|
||||
are more efficient than one execute() operations on multiple Template
|
||||
instances.</p>
|
||||
<p>If <code>str</code> is null, the result is unspecified.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="execute"></a><h3><p><code><a href="#execute"><span class="identifier">execute</span></a> (<span style="white-space:nowrap">context:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a>,</span> <span style="white-space:nowrap">?macros:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></span>):<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Executes <code>this</code> Template, taking into account <code>context</code> for
|
||||
replacements and <code>macros</code> for callback functions.</p>
|
||||
<p>If <code>context</code> has a field 'name', its value replaces all occurrences of
|
||||
::name:: in the Template. Otherwise Template.globals is checked instead,
|
||||
If 'name' is not a field of that either, ::name:: is replaced with null.</p>
|
||||
<p>If <code>macros</code> has a field 'name', all occurrences of $$name(args) are
|
||||
replaced with the result of calling that field. The first argument is
|
||||
always the resolve() method, followed by the given arguments.
|
||||
If <code>macros</code> has no such field, the result is unspecified.</p>
|
||||
<p>If <code>context</code> is null, the result is unspecified. If <code>macros</code> is null,
|
||||
no macros are used.</p></div></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="globals"></a><h3><p><code><span class="label">static</span><a href="../haxe/Template.html#globals"><span class="identifier">globals</span></a>:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a><span> = { }</span></code></p></h3><div class="doc"><p>Global replacements which are used across all Template instances. This
|
||||
has lower priority than the context argument of execute().</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
83
hGameTest/node_modules/openfl/docs/pages/haxe/Timer.html
generated
vendored
Normal file
83
hGameTest/node_modules/openfl/docs/pages/haxe/Timer.html
generated
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Timer - API Reference</title><meta name="description" content="The Timer class allows you to create asynchronous timers on platforms that
|
||||
support events."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Timer</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The Timer class allows you to create asynchronous timers on platforms that
|
||||
support events.</p>
|
||||
<p>The intended usage is to create an instance of the Timer class with a given
|
||||
interval, set its run() method to a custom function to be invoked and
|
||||
eventually call stop() to stop the Timer.</p>
|
||||
<p>Note that a running Timer may or may not prevent the program to exit
|
||||
automatically when main() returns.</p>
|
||||
<p>It is also possible to extend this class and override its run() method in
|
||||
the child class.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">time_ms:<a class="type" title="The standard Int type." href="../Int.html">Int</a></span>)</code></p></h3><p class="availability"><em>Available on Flash, HTML5</em></p><div class="doc"><p>Creates a new timer that will run every <code>time_ms</code> milliseconds.</p>
|
||||
<p>After creating the Timer instance, it calls <code>this.<a href="#run">run</a></code> repeatedly,
|
||||
with delays of <code>time_ms</code> milliseconds, until <code>this.<a href="#stop">stop</a></code> is called.</p>
|
||||
<p>The first invocation occurs after <code>time_ms</code> milliseconds, not
|
||||
immediately.</p>
|
||||
<p>The accuracy of this may be platform-dependent.</p></div></div><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">time:<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../Float.html">Float</a></span>)</code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p>Creates a new timer that will run every <code>time_ms</code> milliseconds.</p>
|
||||
<p>After creating the Timer instance, it calls <code>this.<a href="#run">run</a></code> repeatedly,
|
||||
with delays of <code>time_ms</code> milliseconds, until <code>this.<a href="#stop">stop</a></code> is called.</p>
|
||||
<p>The first invocation occurs after <code>time_ms</code> milliseconds, not
|
||||
immediately.</p>
|
||||
<p>The accuracy of this may be platform-dependent.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="run"></a><h3><p><code><span class="label">dynamic</span> <a href="#run"><span class="identifier">run</span></a> ():<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p>This method is invoked repeatedly on <code>this</code> Timer.</p>
|
||||
<p>It can be overridden in a subclass, or rebound directly to a custom
|
||||
function:</p>
|
||||
<pre><code>var timer = new haxe.Timer(1000); // 1000ms delay
|
||||
timer.run = function() { ... }
|
||||
</code></pre>
|
||||
<p>Once bound, it can still be rebound to different functions until <code>this</code>
|
||||
Timer is stopped through a call to <code>this.<a href="#stop">stop</a></code>.</p></div></div><div class="field "><a name="stop"></a><h3><p><code><a href="#stop"><span class="identifier">stop</span></a> ():<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p>Stops <code>this</code> Timer.</p>
|
||||
<p>After calling this method, no additional invocations of <code>this.<a href="#run">run</a></code>
|
||||
will occur.</p>
|
||||
<p>It is not possible to restart <code>this</code> Timer once stopped.</p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="delay"></a><h3><p><code><span class="label">static</span><a href="#delay"><span class="identifier">delay</span></a> (<span style="white-space:nowrap">f:<a class="type" title="The standard Void type." href="../Void.html">Void</a> ‑> <a class="type" title="The standard Void type." href="../Void.html">Void</a>,</span> <span style="white-space:nowrap">time:<a class="type" title="The standard Int type." href="../Int.html">Int</a></span>):<a class="type" title="The Timer class allows you to create asynchronous timers on platforms that support events." href="../haxe/Timer.html">Timer</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p>Invokes <code>f</code> after <code>time_ms</code> milliseconds.</p>
|
||||
<p>This is a convenience function for creating a new Timer instance with
|
||||
<code>time_ms</code> as argument, binding its run() method to <code>f</code> and then stopping
|
||||
<code>this</code> Timer upon the first invocation.</p>
|
||||
<p>If <code>f</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="delay"></a><h3><p><code><span class="label">static</span><a href="#delay"><span class="identifier">delay</span></a> (<span style="white-space:nowrap">f:<a class="type" title="The standard Void type." href="../Void.html">Void</a> ‑> <a class="type" title="The standard Void type." href="../Void.html">Void</a>,</span> <span style="white-space:nowrap">time_ms:<a class="type" title="The standard Int type." href="../Int.html">Int</a></span>):<a class="type" title="The Timer class allows you to create asynchronous timers on platforms that support events." href="../haxe/Timer.html">Timer</a></code></p></h3><p class="availability"><em>Available on Flash, HTML5</em></p><div class="doc"><p>Invokes <code>f</code> after <code>time_ms</code> milliseconds.</p>
|
||||
<p>This is a convenience function for creating a new Timer instance with
|
||||
<code>time_ms</code> as argument, binding its run() method to <code>f</code> and then stopping
|
||||
<code>this</code> Timer upon the first invocation.</p>
|
||||
<p>If <code>f</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="measure"></a><h3><p><code><span class="label">static</span><a href="#measure"><span class="identifier">measure</span></a><<span class="type">T</span>> (<span style="white-space:nowrap">f:<a class="type" title="The standard Void type." href="../Void.html">Void</a> ‑> <span class="type">T</span>,</span> <span style="white-space:nowrap">?pos:<a class="type" title="PosInfos is a magic type which can be used to generate position information into the output for debugging use." href="../haxe/PosInfos.html">PosInfos</a></span>):<span class="type">T</span></code></p></h3><div class="doc"><p>Measures the time it takes to execute <code>f</code>, in seconds with fractions.</p>
|
||||
<p>This is a convenience function for calculating the difference between
|
||||
Timer.stamp() before and after the invocation of <code>f</code>.</p>
|
||||
<p>The difference is passed as argument to Log.trace(), with "s" appended
|
||||
to denote the unit. The optional <code>pos</code> argument is passed through.</p>
|
||||
<p>If <code>f</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="stamp"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#stamp"><span class="identifier">stamp</span></a> ():<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../Float.html">Float</a></code></p></h3><div class="doc"><p>Returns a timestamp, in seconds with fractions.</p>
|
||||
<p>The value itself might differ depending on platforms, only differences
|
||||
between two values make sense.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/Ucs2.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/Ucs2.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Ucs2 - API Reference</title><meta name="description" content="Cross platform UCS2 string API."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Ucs2(<a class="type" title="The basic String class." href="../String.html">String</a>)</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4><h4></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Cross platform UCS2 string API.</p></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="length"></a><h3><p><code><span class="label">read only</span><a href="../haxe/_Ucs2/Ucs2_Impl_.html#length"><span class="identifier">length</span></a>:<a class="type" title="The standard Int type." href="../Int.html">Int</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
81
hGameTest/node_modules/openfl/docs/pages/haxe/Unserializer.html
generated
vendored
Normal file
81
hGameTest/node_modules/openfl/docs/pages/haxe/Unserializer.html
generated
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Unserializer - API Reference</title><meta name="description" content="The <code><a href="../haxe/Unserializer.html">Unserializer</a></code> class is the complement to the <code><a href="../haxe/Serializer.html">Serializer</a></code> class. It parses
|
||||
a serialization <code><a href="../String.html">String</a></code> and creates objects from the contained data."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Unserializer</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The <code><a href="../haxe/Unserializer.html">Unserializer</a></code> class is the complement to the <code><a href="../haxe/Serializer.html">Serializer</a></code> class. It parses
|
||||
a serialization <code><a href="../String.html">String</a></code> and creates objects from the contained data.</p>
|
||||
<p>This class can be used in two ways:</p><ul><li>create a <code>new <a href="../haxe/Unserializer.html">Unserializer</a>()</code> instance with a given serialization
|
||||
String, then call its <code>unserialize()</code> method until all values are
|
||||
extracted</li><li>call <code><a href="../haxe/Unserializer.html#run">Unserializer.run</a>()</code> to unserialize a single value from a given
|
||||
String</li></ul>
|
||||
<p>The specification of the serialization format can be found here:
|
||||
<a href="https://haxe.org/manual/serialization/format">https://haxe.org/manual/serialization/format</a></p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">buf:<a class="type" title="The basic String class." href="../String.html">String</a></span>)</code></p></h3><div class="doc"><p>Creates a new Unserializer instance, with its internal buffer
|
||||
initialized to <code>buf</code>.</p>
|
||||
<p>This does not parse <code>buf</code> immediately. It is parsed only when calls to
|
||||
<code>this.<a href="#unserialize">unserialize</a></code> are made.</p>
|
||||
<p>Each Unserializer instance maintains its own cache.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="setResolver"></a><h3><p><code><a href="#setResolver"><span class="identifier">setResolver</span></a> (<span style="white-space:nowrap">r:<span class="type">TypeResolver</span></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Sets the type resolver of <code>this</code> Unserializer instance to <code>r</code>.</p>
|
||||
<p>If <code>r</code> is null, a special resolver is used which returns null for all
|
||||
input values.</p>
|
||||
<p>See <code>DEFAULT_RESOLVER</code> for more information on type resolvers.</p></div></div><div class="field "><a name="unserialize"></a><h3><p><code><a href="#unserialize"><span class="identifier">unserialize</span></a> ():<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></code></p></h3><div class="doc"><p>Unserializes the next part of <code>this</code> Unserializer instance and returns
|
||||
the according value.</p>
|
||||
<p>This function may call <code>this.<a href="#resolver">resolver</a>.resolveClass</code> to determine a
|
||||
Class from a String, and <code>this.<a href="#resolver">resolver</a>.resolveEnum</code> to determine an
|
||||
Enum from a String.</p>
|
||||
<p>If <code>this</code> Unserializer instance contains no more or invalid data, an
|
||||
exception is thrown.</p>
|
||||
<p>This operation may fail on structurally valid data if a type cannot be
|
||||
resolved or if a field cannot be set. This can happen when unserializing
|
||||
Strings that were serialized on a different Haxe target, in which the
|
||||
serialization side has to make sure not to include platform-specific
|
||||
data.</p>
|
||||
<p>Classes are created from <code><a href="../Type.html#createEmptyInstance">Type.createEmptyInstance</a></code>, which means their
|
||||
constructors are not called.</p></div></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="DEFAULT_RESOLVER"></a><h3><p><code><span class="label">static</span><a href="../haxe/Unserializer.html#DEFAULT_RESOLVER"><span class="identifier">DEFAULT_RESOLVER</span></a>:<span class="type">TypeResolver</span><span> = new DefaultResolver()</span></code></p></h3><div class="doc"><p>This value can be set to use custom type resolvers.</p>
|
||||
<p>A type resolver finds a <code><a href="../Class.html">Class</a></code> or <code><a href="../Enum.html">Enum</a></code> instance from a given <code><a href="../String.html">String</a></code>.
|
||||
By default, the Haxe <code><a href="../Type.html">Type</a></code> Api is used.</p>
|
||||
<p>A type resolver must provide two methods:</p><ol><li>
|
||||
<p><code>resolveClass(name:<a href="../String.html">String</a>):<a href="../Class.html">Class</a><<a href="../Dynamic.html">Dynamic</a>></code> is called to determine a</p>
|
||||
<pre><code>`Class` from a class name
|
||||
</code></pre></li><li>
|
||||
<p><code>resolveEnum(name:<a href="../String.html">String</a>):<a href="../Enum.html">Enum</a><<a href="../Dynamic.html">Dynamic</a>></code> is called to determine an</p>
|
||||
<pre><code>`Enum` from an enum name
|
||||
</code></pre></li></ol>
|
||||
<p>This value is applied when a new <code><a href="../haxe/Unserializer.html">Unserializer</a></code> instance is created.
|
||||
Changing it afterwards has no effect on previously created instances.</p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="run"></a><h3><p><code><span class="label">static</span><a href="#run"><span class="identifier">run</span></a> (<span style="white-space:nowrap">v:<a class="type" title="The basic String class." href="../String.html">String</a></span>):<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../Dynamic.html">Dynamic</a></code></p></h3><div class="doc"><p>Unserializes <code>v</code> and returns the according value.</p>
|
||||
<p>This is a convenience function for creating a new instance of
|
||||
Unserializer with <code>v</code> as buffer and calling its unserialize() method
|
||||
once.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/Utf8.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/Utf8.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe.Utf8 - API Reference</title><meta name="description" content="Since not all platforms guarantee that <code><a href="../String.html">String</a></code> always uses UTF-8 encoding, you
|
||||
can use this cross-platform API to perform operations on such strings."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Utf8</h1><h4><small>package <a href="../haxe/index.html">haxe</a></small></h4> <p class="availability"><hr/><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Since not all platforms guarantee that <code><a href="../String.html">String</a></code> always uses UTF-8 encoding, you
|
||||
can use this cross-platform API to perform operations on such strings.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">?size:<a class="type" title="The standard Int type." href="../Int.html">Int</a></span>)</code></p></h3><div class="doc"><p>Allocate a new Utf8 buffer using an optional bytes size.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="addChar"></a><h3><p><code><a href="#addChar"><span class="identifier">addChar</span></a> (<span style="white-space:nowrap">c:<a class="type" title="The standard Int type." href="../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><div class="doc"><p>Add the given UTF8 character code to the buffer.</p></div></div><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../String.html">String</a></code></p></h3><div class="doc"><p>Returns the buffer converted to a String.</p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="iter"></a><h3><p><code><span class="label">static</span><a href="#iter"><span class="identifier">iter</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../String.html">String</a>,</span> <span style="white-space:nowrap">chars:<a class="type" title="The standard Int type." href="../Int.html">Int</a> ‑> <a class="type" title="The standard Void type." href="../Void.html">Void</a></span>):<a class="type" title="The standard Void type." href="../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko</em></p><div class="doc"><p>Call the <code>chars</code> function for each UTF8 char of the string.</p></div></div><div class="field "><a name="length"></a><h3><p><code><span class="label">static</span><a href="#length"><span class="identifier">length</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../String.html">String</a></span>):<a class="type" title="The standard Int type." href="../Int.html">Int</a></code></p></h3><div class="doc"><p>Returns the number of UTF8 chars of the String.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Base64.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Base64.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.Base64 - API Reference</title><meta name="description" content="Allows to encode/decode String and bytes using Base64 encoding."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Base64</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Allows to encode/decode String and bytes using Base64 encoding.</p></div></div><h3 class="section">Static variables</h3><div class="fields"><div class="field "><a name="BYTES"></a><h3><p><code><span class="label">static</span><span class="label">read only</span><a href="../../haxe/crypto/Base64.html#BYTES"><span class="identifier">BYTES</span></a>:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a><span> = haxe.io.Bytes.ofString(CHARS)</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="CHARS"></a><h3><p><code><span class="label">static</span><span class="label">read only</span><a href="../../haxe/crypto/Base64.html#CHARS"><span class="identifier">CHARS</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a><span> = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"</span></code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="decode"></a><h3><p><code><span class="label">static</span><a href="#decode"><span class="identifier">decode</span></a> (<span style="white-space:nowrap">str:<a class="type" title="The basic String class." href="../../String.html">String</a>,</span> <span style="white-space:nowrap">complement:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a> = true</span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/BaseCode.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/BaseCode.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.BaseCode - API Reference</title><meta name="description" content="Allows to encode/decode String and bytes using a power of two base dictionary."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> BaseCode</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Allows to encode/decode String and bytes using a power of two base dictionary.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">base:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>)</code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, HTML5, Windows</em></p><div class="doc"><p></p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="decodeBytes"></a><h3><p><code><a href="#decodeBytes"><span class="identifier">decodeBytes</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p></p></div></div><div class="field "><a name="encodeBytes"></a><h3><p><code><a href="#encodeBytes"><span class="identifier">encodeBytes</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, HTML5, Windows</em></p><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Crc32.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Crc32.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.Crc32 - API Reference</title><meta name="description" content="Calculates the Crc32 of the given Bytes."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Crc32</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on Neko, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Calculates the Crc32 of the given Bytes.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="make"></a><h3><p><code><span class="label">static</span><a href="#make"><span class="identifier">make</span></a> (<span style="white-space:nowrap">data:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Calculates the CRC32 of the given data bytes</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/HashMethod.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/HashMethod.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.HashMethod - API Reference</title><meta name="description" content="Hash methods for Hmac calculation."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>enum</small> HashMethod</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4><p><h4><small>import <a href="../../haxe/crypto/Hmac.html">haxe.crypto.Hmac</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Hash methods for Hmac calculation.</p></div></div><h3 class="section">Values</h3><div class="fields"><div class="field"><h3><code><a name="MD5" href="#MD5"><span class="identifier">MD5</span></a></code></h3><div class="doc"><p></p></div></div><div class="field"><h3><code><a name="SHA1" href="#SHA1"><span class="identifier">SHA1</span></a></code></h3><div class="doc"><p></p></div></div><div class="field"><h3><code><a name="SHA256" href="#SHA256"><span class="identifier">SHA256</span></a></code></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Hmac.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Hmac.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.Hmac - API Reference</title><meta name="description" content="Calculates a Hmac of the given Bytes using a HashMethod."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Hmac</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Calculates a Hmac of the given Bytes using a HashMethod.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">hashMethod:<a class="type" title="Hash methods for Hmac calculation." href="../../haxe/crypto/HashMethod.html">HashMethod</a></span>)</code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="make"></a><h3><p><code><a href="#make"><span class="identifier">make</span></a> (<span style="white-space:nowrap">key:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a>,</span> <span style="white-space:nowrap">msg:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Md5.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Md5.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.Md5 - API Reference</title><meta name="description" content="Creates a MD5 of a String."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Md5</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Creates a MD5 of a String.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="make"></a><h3><p><code><span class="label">static</span><a href="#make"><span class="identifier">make</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Sha1.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Sha1.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.Sha1 - API Reference</title><meta name="description" content="Creates a Sha1 of a String."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Sha1</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Creates a Sha1 of a String.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="encode"></a><h3><p><code><span class="label">static</span><a href="#encode"><span class="identifier">encode</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="make"></a><h3><p><code><span class="label">static</span><a href="#make"><span class="identifier">make</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Sha256.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/Sha256.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto.Sha256 - API Reference</title><meta name="description" content="Creates a Sha256 of a String."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Sha256</h1><h4><small>package <a href="../../haxe/crypto/index.html">haxe.crypto</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Creates a Sha256 of a String.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="encode"></a><h3><p><code><span class="label">static</span><a href="#encode"><span class="identifier">encode</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="make"></a><h3><p><code><span class="label">static</span><a href="#make"><span class="identifier">make</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
72
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/index.html
generated
vendored
Normal file
72
hGameTest/node_modules/openfl/docs/pages/haxe/crypto/index.html
generated
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.crypto - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.crypto </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/Base64.html" title="haxe.crypto.Base64">Base64</a></td><td><p>Allows to encode/decode String and bytes using Base64 encoding.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/BaseCode.html" title="haxe.crypto.BaseCode">BaseCode</a></td><td><p>Allows to encode/decode String and bytes using a power of two base dictionary.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/Crc32.html" title="haxe.crypto.Crc32">Crc32</a></td><td><p>Calculates the Crc32 of the given Bytes.</p></td></tr><tr class="enum"><td width="200"><a href="../../haxe/crypto/HashMethod.html" title="haxe.crypto.HashMethod">HashMethod</a></td><td><p>Hash methods for Hmac calculation.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/Hmac.html" title="haxe.crypto.Hmac">Hmac</a></td><td><p>Calculates a Hmac of the given Bytes using a HashMethod.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/Md5.html" title="haxe.crypto.Md5">Md5</a></td><td><p>Creates a MD5 of a String.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/Sha1.html" title="haxe.crypto.Sha1">Sha1</a></td><td><p>Creates a Sha1 of a String.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/crypto/Sha256.html" title="haxe.crypto.Sha256">Sha256</a></td><td><p>Creates a Sha256 of a String.</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
58
hGameTest/node_modules/openfl/docs/pages/haxe/ds/BalancedTree.html
generated
vendored
Normal file
58
hGameTest/node_modules/openfl/docs/pages/haxe/ds/BalancedTree.html
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.BalancedTree - API Reference</title><meta name="description" content="BalancedTree allows key-value mapping with arbitrary keys, as long as they
|
||||
can be ordered. By default, <code><a href="../../Reflect.html#compare">Reflect.compare</a></code> is used in the <code>compare</code>
|
||||
method, which can be overridden in subclasses."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> BalancedTree<<span class="type">K</span>, <span class="type">V</span>></h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4> <h4><small><span class="muted">extended by </span><a class="type" title="EnumValueMap allows mapping of enum value keys to arbitrary values." href="../../haxe/ds/EnumValueMap.html">EnumValueMap</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>BalancedTree allows key-value mapping with arbitrary keys, as long as they
|
||||
can be ordered. By default, <code><a href="../../Reflect.html#compare">Reflect.compare</a></code> is used in the <code>compare</code>
|
||||
method, which can be overridden in subclasses.</p>
|
||||
<p>Operations have a logarithmic average and worst-case cost.</p>
|
||||
<p>Iteration over keys and values, using <code>keys</code> and <code>iterator</code> respectively,
|
||||
are in-order.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p>Creates a new BalancedTree, which is initially empty.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="exists"></a><h3><p><code><a href="#exists"><span class="identifier">exists</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Tells if <code>key</code> is bound to a value.</p>
|
||||
<p>This method returns true even if <code>key</code> is bound to null.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">V</span>></code></p></h3><div class="doc"><p>Returns the value <code>key</code> is bound to.</p>
|
||||
<p>If <code>key</code> is not bound to any value, <code>null</code> is returned.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="iterator"></a><h3><p><code><a href="#iterator"><span class="identifier">iterator</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">V</span>></code></p></h3><div class="doc"><p>Iterates over the bound values of <code>this</code> BalancedTree.</p>
|
||||
<p>This operation is performed in-order.</p></div></div><div class="field "><a name="keys"></a><h3><p><code><a href="#keys"><span class="identifier">keys</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">K</span>></code></p></h3><div class="doc"><p>Iterates over the keys of <code>this</code> BalancedTree.</p>
|
||||
<p>This operation is performed in-order.</p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Removes the current binding of <code>key</code>.</p>
|
||||
<p>If <code>key</code> has no binding, <code>this</code> BalancedTree is unchanged and false is
|
||||
returned.</p>
|
||||
<p>Otherwise the binding of <code>key</code> is removed and true is returned.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span>,</span> <span style="white-space:nowrap">value:<span class="type">V</span></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Binds <code>key</code> to <code>value</code>.</p>
|
||||
<p>If <code>key</code> is already bound to a value, that binding disappears.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
53
hGameTest/node_modules/openfl/docs/pages/haxe/ds/EnumValueMap.html
generated
vendored
Normal file
53
hGameTest/node_modules/openfl/docs/pages/haxe/ds/EnumValueMap.html
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.EnumValueMap - API Reference</title><meta name="description" content="EnumValueMap allows mapping of enum value keys to arbitrary values."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> EnumValueMap<<span class="type">K</span>, <span class="type">V</span>></h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4><h4><small>extends <a class="type" title="BalancedTree allows key-value mapping with arbitrary keys, as long as they can be ordered." href="../../haxe/ds/BalancedTree.html">BalancedTree</a></small></h4> <h4><small>implements <a class="type" title="" href="../../haxe/IMap.html">IMap</a><<span class="type">K</span>, <span class="type">V</span>></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>EnumValueMap allows mapping of enum value keys to arbitrary values.</p>
|
||||
<p>Keys are compared by value and recursively over their parameters. If any
|
||||
parameter is not an enum value, <code><a href="../../Reflect.html#compare">Reflect.compare</a></code> is used to compare them.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p></p></div></div></div> <div class="inherited-fields well"><h3 class="section">Inherited Variables</h3><div class="fields"><div style="display:none"></div></div><h3 class="section">Inherited Methods</h3><div class="fields"><h4><a href="#" class="expand-button"><i class="fa fa-arrow-circle-o-right"></i></a> Defined by <a class="type" title="BalancedTree allows key-value mapping with arbitrary keys, as long as they can be ordered." href="../../haxe/ds/BalancedTree.html">BalancedTree</a></h4><div style="display:none"><div class="field "><a name="exists"></a><h3><p><code><a href="#exists"><span class="identifier">exists</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Tells if <code>key</code> is bound to a value.</p>
|
||||
<p>This method returns true even if <code>key</code> is bound to null.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">V</span>></code></p></h3><div class="doc"><p>Returns the value <code>key</code> is bound to.</p>
|
||||
<p>If <code>key</code> is not bound to any value, <code>null</code> is returned.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="iterator"></a><h3><p><code><a href="#iterator"><span class="identifier">iterator</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">V</span>></code></p></h3><div class="doc"><p>Iterates over the bound values of <code>this</code> BalancedTree.</p>
|
||||
<p>This operation is performed in-order.</p></div></div><div class="field "><a name="keys"></a><h3><p><code><a href="#keys"><span class="identifier">keys</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">K</span>></code></p></h3><div class="doc"><p>Iterates over the keys of <code>this</code> BalancedTree.</p>
|
||||
<p>This operation is performed in-order.</p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Removes the current binding of <code>key</code>.</p>
|
||||
<p>If <code>key</code> has no binding, <code>this</code> BalancedTree is unchanged and false is
|
||||
returned.</p>
|
||||
<p>Otherwise the binding of <code>key</code> is removed and true is returned.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span>,</span> <span style="white-space:nowrap">value:<span class="type">V</span></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Binds <code>key</code> to <code>value</code>.</p>
|
||||
<p>If <code>key</code> is already bound to a value, that binding disappears.</p>
|
||||
<p>If <code>key</code> is null, the result is unspecified.</p></div></div></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/ds/HashMap.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/ds/HashMap.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.HashMap - API Reference</title><meta name="description" content="HashMap allows mapping of hashable objects to arbitrary values."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> HashMap<<span class="type">K</span>, <span class="type">V</span>>(<span class="type">HashMapData</span><<span class="type">K</span>, <span class="type">V</span>>)</h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4><h4></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>HashMap allows mapping of hashable objects to arbitrary values.</p>
|
||||
<p>See <code><a href="../../Map.html">Map</a></code> for documentation details.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Map.html">https://haxe.org/manual/std-Map.html</a></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/ds/IntMap.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/ds/IntMap.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.IntMap - API Reference</title><meta name="description" content="IntMap allows mapping of Int keys to arbitrary values."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> IntMap<<span class="type">T</span>></h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4> <h4><small>implements <a class="type" title="" href="../../haxe/IMap.html">IMap</a><<a class="type" title="The standard Int type." href="../../Int.html">Int</a>, <span class="type">T</span>></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>IntMap allows mapping of Int keys to arbitrary values.</p>
|
||||
<p>See <code><a href="../../Map.html">Map</a></code> for documentation details.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Map.html">https://haxe.org/manual/std-Map.html</a></p></div></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p>Creates a new IntMap.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="exists"></a><h3><p><code><a href="#exists"><span class="identifier">exists</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#exists">Map.exists</a></code></p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">T</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#get">Map.get</a></code></p></div></div><div class="field "><a name="iterator"></a><h3><p><code><a href="#iterator"><span class="identifier">iterator</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">T</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#iterator">Map.iterator</a></code></p></div></div><div class="field "><a name="keys"></a><h3><p><code><a href="#keys"><span class="identifier">keys</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<a class="type" title="The standard Int type." href="../../Int.html">Int</a>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#keys">Map.keys</a></code></p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#remove">Map.remove</a></code></p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">value:<span class="type">T</span></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#set">Map.set</a></code></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
42
hGameTest/node_modules/openfl/docs/pages/haxe/ds/ObjectMap.html
generated
vendored
Normal file
42
hGameTest/node_modules/openfl/docs/pages/haxe/ds/ObjectMap.html
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.ObjectMap - API Reference</title><meta name="description" content="ObjectMap allows mapping of object keys to arbitrary values."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> ObjectMap<<span class="type">K</span>, <span class="type">V</span>></h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4> <h4><small>implements <a class="type" title="" href="../../haxe/IMap.html">IMap</a><<span class="type">K</span>, <span class="type">V</span>></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>ObjectMap allows mapping of object keys to arbitrary values.</p>
|
||||
<p>On static targets, the keys are considered to be strong references. Refer
|
||||
to <code>haxe.ds.WeakMap</code> for a weak reference version.</p>
|
||||
<p>See <code><a href="../../Map.html">Map</a></code> for documentation details.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Map.html">https://haxe.org/manual/std-Map.html</a></p></div></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p>Creates a new ObjectMap.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="exists"></a><h3><p><code><a href="#exists"><span class="identifier">exists</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#exists">Map.exists</a></code></p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">V</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#get">Map.get</a></code></p></div></div><div class="field "><a name="iterator"></a><h3><p><code><a href="#iterator"><span class="identifier">iterator</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">V</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#iterator">Map.iterator</a></code></p></div></div><div class="field "><a name="keys"></a><h3><p><code><a href="#keys"><span class="identifier">keys</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">K</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#keys">Map.keys</a></code></p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#remove">Map.remove</a></code></p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">key:<span class="type">K</span>,</span> <span style="white-space:nowrap">value:<span class="type">V</span></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#set">Map.set</a></code></p></div></div><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#toString">Map.toString</a></code></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/ds/StringMap.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/ds/StringMap.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.StringMap - API Reference</title><meta name="description" content="StringMap allows mapping of String keys to arbitrary values."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> StringMap<<span class="type">T</span>></h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4> <h4><small>implements <a class="type" title="" href="../../haxe/IMap.html">IMap</a><<a class="type" title="The basic String class." href="../../String.html">String</a>, <span class="type">T</span>></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>StringMap allows mapping of String keys to arbitrary values.</p>
|
||||
<p>See <code><a href="../../Map.html">Map</a></code> for documentation details.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Map.html">https://haxe.org/manual/std-Map.html</a></p></div></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p>Creates a new StringMap.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="exists"></a><h3><p><code><a href="#exists"><span class="identifier">exists</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#exists">Map.exists</a></code></p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">T</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#get">Map.get</a></code></p></div></div><div class="field "><a name="iterator"></a><h3><p><code><a href="#iterator"><span class="identifier">iterator</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<span class="type">T</span>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#iterator">Map.iterator</a></code></p></div></div><div class="field "><a name="keys"></a><h3><p><code><a href="#keys"><span class="identifier">keys</span></a> ():<a class="type" title="An Iterator is a structure that permits iteration over elements of type T." href="../../Iterator.html">Iterator</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#keys">Map.keys</a></code></p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#remove">Map.remove</a></code></p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">key:<a class="type" title="The basic String class." href="../../String.html">String</a>,</span> <span style="white-space:nowrap">value:<span class="type">T</span></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#set">Map.set</a></code></p></div></div><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>See <code><a href="../../Map.html#toString">Map.toString</a></code></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/ds/TreeNode.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/ds/TreeNode.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.TreeNode - API Reference</title><meta name="description" content="A tree node of <code><a href="../../haxe/ds/BalancedTree.html">haxe.ds.BalancedTree</a></code>."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> TreeNode<<span class="type">K</span>, <span class="type">V</span>></h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4> <p><h4><small>import <a href="../../haxe/ds/BalancedTree.html">haxe.ds.BalancedTree</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>A tree node of <code><a href="../../haxe/ds/BalancedTree.html">haxe.ds.BalancedTree</a></code>.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">l:<a class="type" title="A tree node of haxe." href="../../haxe/ds/TreeNode.html">TreeNode</a><<span class="type">K</span>, <span class="type">V</span>>,</span> <span style="white-space:nowrap">k:<span class="type">K</span>,</span> <span style="white-space:nowrap">v:<span class="type">V</span>,</span> <span style="white-space:nowrap">r:<a class="type" title="A tree node of haxe." href="../../haxe/ds/TreeNode.html">TreeNode</a><<span class="type">K</span>, <span class="type">V</span>>,</span> <span style="white-space:nowrap">h:<a class="type" title="The standard Int type." href="../../Int.html">Int</a> = -1</span>)</code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="key"></a><h3><p><code><a href="../../haxe/ds/TreeNode.html#key"><span class="identifier">key</span></a>:<span class="type">K</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="left"></a><h3><p><code><a href="../../haxe/ds/TreeNode.html#left"><span class="identifier">left</span></a>:<a class="type" title="A tree node of haxe." href="../../haxe/ds/TreeNode.html">TreeNode</a><<span class="type">K</span>, <span class="type">V</span>></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="right"></a><h3><p><code><a href="../../haxe/ds/TreeNode.html#right"><span class="identifier">right</span></a>:<a class="type" title="A tree node of haxe." href="../../haxe/ds/TreeNode.html">TreeNode</a><<span class="type">K</span>, <span class="type">V</span>></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="value"></a><h3><p><code><a href="../../haxe/ds/TreeNode.html#value"><span class="identifier">value</span></a>:<span class="type">V</span></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/ds/Vector.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/ds/Vector.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds.Vector - API Reference</title><meta name="description" content="A Vector is a storage of fixed size. It can be faster than Array on some
|
||||
targets, and is never slower."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Vector<<span class="type">T</span>>(<span class="type">VectorData</span><<span class="type">T</span>>)</h1><h4><small>package <a href="../../haxe/ds/index.html">haxe.ds</a></small></h4><h4></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>A Vector is a storage of fixed size. It can be faster than Array on some
|
||||
targets, and is never slower.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-vector.html">https://haxe.org/manual/std-vector.html</a></p></div></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="length"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/ds/_Vector/Vector_Impl_.html#length"><span class="identifier">length</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Returns the length of <code>this</code> Vector.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
75
hGameTest/node_modules/openfl/docs/pages/haxe/ds/index.html
generated
vendored
Normal file
75
hGameTest/node_modules/openfl/docs/pages/haxe/ds/index.html
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.ds - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.ds </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="class"><td width="200"><a href="../../haxe/ds/BalancedTree.html" title="haxe.ds.BalancedTree">BalancedTree</a></td><td><p>BalancedTree allows key-value mapping with arbitrary keys, as long as they
|
||||
can be ordered. By default, <code><a href="../../Reflect.html#compare">Reflect.compare</a></code> is used in the <code>compare</code>
|
||||
method, which can be overridden in subclasses.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/ds/EnumValueMap.html" title="haxe.ds.EnumValueMap">EnumValueMap</a></td><td><p>EnumValueMap allows mapping of enum value keys to arbitrary values.</p></td></tr><tr class="abstract"><td width="200"><a href="../../haxe/ds/HashMap.html" title="haxe.ds.HashMap">HashMap</a></td><td><p>HashMap allows mapping of hashable objects to arbitrary values.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/ds/IntMap.html" title="haxe.ds.IntMap">IntMap</a></td><td><p>IntMap allows mapping of Int keys to arbitrary values.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/ds/ObjectMap.html" title="haxe.ds.ObjectMap">ObjectMap</a></td><td><p>ObjectMap allows mapping of object keys to arbitrary values.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/ds/StringMap.html" title="haxe.ds.StringMap">StringMap</a></td><td><p>StringMap allows mapping of String keys to arbitrary values.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/ds/TreeNode.html" title="haxe.ds.TreeNode">TreeNode</a></td><td><p>A tree node of <code><a href="../../haxe/ds/BalancedTree.html">haxe.ds.BalancedTree</a></code>.</p></td></tr><tr class="abstract"><td width="200"><a href="../../haxe/ds/Vector.html" title="haxe.ds.Vector">Vector</a></td><td><p>A Vector is a storage of fixed size. It can be faster than Array on some
|
||||
targets, and is never slower.</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/extern/AsVar.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/extern/AsVar.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.extern.AsVar - API Reference</title><meta name="description" content="If this type is used as an argument type, the compiler ensures that
|
||||
argument expressions are bound to a local variable."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> AsVar<<span class="type">T</span>>(<span class="type">T</span>)</h1><h4><small>package <a href="../../haxe/extern/index.html">haxe.extern</a></small></h4><h4><small>from <span class="type">T</span></small><small> to <span class="type">T</span></small></h4><p class="availability"><hr/><em>Available on Android, iOS, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>If this type is used as an argument type, the compiler ensures that
|
||||
argument expressions are bound to a local variable.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
44
hGameTest/node_modules/openfl/docs/pages/haxe/extern/EitherType.html
generated
vendored
Normal file
44
hGameTest/node_modules/openfl/docs/pages/haxe/extern/EitherType.html
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.extern.EitherType - API Reference</title><meta name="description" content="An abstract type allowing values to be either of <code>T1</code> or <code>T2</code> type.
|
||||
Supports implicit casts from/to either types."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> EitherType<<span class="type">T1</span>, <span class="type">T2</span>>(<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a>)</h1><h4><small>package <a href="../../haxe/extern/index.html">haxe.extern</a></small></h4><h4><small>from <span class="type">T2</span>, </small><small><span class="type">T1</span></small><small> to <span class="type">T2</span>, </small><small><span class="type">T1</span></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>An abstract type allowing values to be either of <code>T1</code> or <code>T2</code> type.
|
||||
Supports implicit casts from/to either types.</p>
|
||||
<p>It is useful for interfacing with external code on dynamic platforms
|
||||
such as JavaScript or Python.</p>
|
||||
<p>Otherwise, use of this type is discouraged.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/lf-externs.html">https://haxe.org/manual/lf-externs.html</a></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
42
hGameTest/node_modules/openfl/docs/pages/haxe/extern/Rest.html
generated
vendored
Normal file
42
hGameTest/node_modules/openfl/docs/pages/haxe/extern/Rest.html
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.extern.Rest - API Reference</title><meta name="description" content="A special abstract type that represents "rest" function argument."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> Rest<<span class="type">T</span>>(<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<span class="type">T</span>>)</h1><h4><small>package <a href="../../haxe/extern/index.html">haxe.extern</a></small></h4><h4></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>A special abstract type that represents "rest" function argument.</p>
|
||||
<p>Should be used as a type for the last argument of an extern method,
|
||||
representing that arbitrary number of arguments of given type can be
|
||||
passed to that method.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/lf-externs.html">https://haxe.org/manual/lf-externs.html</a></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
74
hGameTest/node_modules/openfl/docs/pages/haxe/extern/index.html
generated
vendored
Normal file
74
hGameTest/node_modules/openfl/docs/pages/haxe/extern/index.html
generated
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.extern - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.extern </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="abstract"><td width="200"><a href="../../haxe/extern/AsVar.html" title="haxe.extern.AsVar">AsVar</a></td><td><p>If this type is used as an argument type, the compiler ensures that
|
||||
argument expressions are bound to a local variable.</p></td></tr><tr class="abstract"><td width="200"><a href="../../haxe/extern/EitherType.html" title="haxe.extern.EitherType">EitherType</a></td><td><p>An abstract type allowing values to be either of <code>T1</code> or <code>T2</code> type.
|
||||
Supports implicit casts from/to either types.</p></td></tr><tr class="abstract"><td width="200"><a href="../../haxe/extern/Rest.html" title="haxe.extern.Rest">Rest</a></td><td><p>A special abstract type that represents "rest" function argument.</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/format/JsonParser.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/format/JsonParser.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.format.JsonParser - API Reference</title><meta name="description" content="An implementation of JSON parser in Haxe."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> JsonParser</h1><h4><small>package <a href="../../haxe/format/index.html">haxe.format</a></small></h4> <p class="availability"><hr/><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>An implementation of JSON parser in Haxe.</p>
|
||||
<p>This class is used by <code><a href="../../haxe/Json.html">haxe.Json</a></code> when native JSON implementation
|
||||
is not available.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Json-parsing.html">https://haxe.org/manual/std-Json-parsing.html</a></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
46
hGameTest/node_modules/openfl/docs/pages/haxe/format/JsonPrinter.html
generated
vendored
Normal file
46
hGameTest/node_modules/openfl/docs/pages/haxe/format/JsonPrinter.html
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.format.JsonPrinter - API Reference</title><meta name="description" content="An implementation of JSON printer in Haxe."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> JsonPrinter</h1><h4><small>package <a href="../../haxe/format/index.html">haxe.format</a></small></h4> <p class="availability"><hr/><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>An implementation of JSON printer in Haxe.</p>
|
||||
<p>This class is used by <code><a href="../../haxe/Json.html">haxe.Json</a></code> when native JSON implementation
|
||||
is not available.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/std-Json-encoding.html">https://haxe.org/manual/std-Json-encoding.html</a></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="print"></a><h3><p><code><span class="label">static</span><a href="#print"><span class="identifier">print</span></a> (<span style="white-space:nowrap">o:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a>,</span> <span style="white-space:nowrap">?replacer:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a> ‑> <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a> ‑> <a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a>,</span> <span style="white-space:nowrap">?space:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>Encodes <code>o</code>'s value and returns the resulting JSON string.</p>
|
||||
<p>If <code>replacer</code> is given and is not null, it is used to retrieve
|
||||
actual object to be encoded. The <code>replacer</code> function takes two parameters,
|
||||
the key and the value being encoded. Initial key value is an empty string.</p>
|
||||
<p>If <code>space</code> is given and is not null, the result will be pretty-printed.
|
||||
Successive levels will be indented by this string.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
72
hGameTest/node_modules/openfl/docs/pages/haxe/format/index.html
generated
vendored
Normal file
72
hGameTest/node_modules/openfl/docs/pages/haxe/format/index.html
generated
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.format - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.format </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="class"><td width="200"><a href="../../haxe/format/JsonParser.html" title="haxe.format.JsonParser">JsonParser</a></td><td><p>An implementation of JSON parser in Haxe.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/format/JsonPrinter.html" title="haxe.format.JsonPrinter">JsonPrinter</a></td><td><p>An implementation of JSON printer in Haxe.</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
94
hGameTest/node_modules/openfl/docs/pages/haxe/index.html
generated
vendored
Normal file
94
hGameTest/node_modules/openfl/docs/pages/haxe/index.html
generated
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../jquery-1.9.1.min.js"></script><script src="../bootstrap/js/bootstrap.min.js"></script><script src="../bootstrap/js/bootstrap-select.min.js"></script><link href="../styles.css" rel="stylesheet"/><link href="../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../nav.js"></script><script type="text/javascript" src="../index.js"></script><link rel="icon" href="../favicon.ico" type="image/x-icon"></link><title>haxe - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="">..</a></th><td></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/crypto/index.html" title="haxe.crypto">crypto</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/ds/index.html" title="haxe.ds">ds</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/extern/index.html" title="haxe.extern">extern</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/format/index.html" title="haxe.format">format</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/io/index.html" title="haxe.io">io</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/macro/index.html" title="haxe.macro">macro</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/remoting/index.html" title="haxe.remoting">remoting</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/rtti/index.html" title="haxe.rtti">rtti</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/unit/index.html" title="haxe.unit">unit</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/web/index.html" title="haxe.web">web</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/xml/index.html" title="haxe.xml">xml</a></td></tr><tr class="package"><td colspan="2"><i class="fa fa-folder-o"></i><a href="../haxe/zip/index.html" title="haxe.zip">zip</a></td></tr><tr class="class"><td width="200"><a href="../haxe/CallStack.html" title="haxe.CallStack">CallStack</a></td><td><p>Get informations about the call stack.</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/Constructible.html" title="haxe.Constructible">Constructible</a></td><td><p>This type unifies with any instance of classes that have a constructor
|
||||
which</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/DynamicAccess.html" title="haxe.DynamicAccess">DynamicAccess</a></td><td><p>DynamicAccess is an abstract type for working with anonymous structures
|
||||
that are intended to hold collections of objects by the string key.</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/EnumFlags.html" title="haxe.EnumFlags">EnumFlags</a></td><td><p>A typed interface for bit flags. This is not a real object, only a typed
|
||||
interface for an actual Int. Each flag can be tested/set with the
|
||||
corresponding enum instance. Up to 32 flags can be stored that way.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/EnumTools.html" title="haxe.EnumTools">EnumTools</a></td><td><p>This class provides advanced methods on enums. It is ideally used with
|
||||
<code>using <a href="../haxe/EnumTools.html">EnumTools</a></code> and then acts as an
|
||||
<a href="https://haxe.org/manual/lf-static-extension.html">extension</a> to the
|
||||
<code>enum</code> types.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/EnumValueTools.html" title="haxe.EnumValueTools">EnumValueTools</a></td><td><p>This class provides advanced methods on enum values. It is ideally used with
|
||||
<code>using <a href="../haxe/EnumValueTools.html">EnumValueTools</a></code> and then acts as an
|
||||
<a href="https://haxe.org/manual/lf-static-extension.html">extension</a> to the
|
||||
<code><a href="../EnumValue.html">EnumValue</a></code> types.</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/FlatEnum.html" title="haxe.FlatEnum">FlatEnum</a></td><td><p>This type unifies with an enum instance if all constructors of the enum
|
||||
require no arguments.</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/Function.html" title="haxe.Function">Function</a></td><td><p>This type unifies with any function type.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/IMap.html" title="haxe.IMap">IMap</a></td><td><p></p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/Int32.html" title="haxe.Int32">Int32</a></td><td><p>Int32 provides a 32-bit integer with consistent overflow behavior across
|
||||
all platforms.</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/Int64.html" title="haxe.Int64">Int64</a></td><td><p>A cross-platform signed 64-bit integer.
|
||||
Int64 instances can be created from two 32-bit words using <code><a href="../haxe/Int64.html#make">Int64.make</a>()</code>.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Json.html" title="haxe.Json">Json</a></td><td><p>Cross-platform JSON API: it will automatically use the optimized native API if available.
|
||||
Use <code>-D haxeJSON</code> to force usage of the Haxe implementation even if a native API is found:
|
||||
This will provide extra encoding features such as enums (replaced by their index) and StringMaps.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Log.html" title="haxe.Log">Log</a></td><td><p>Log primarily provides the <code>trace()</code> method, which is invoked upon a call to
|
||||
<code>trace()</code> in Haxe code.</p></td></tr><tr class="type"><td width="200"><a href="../haxe/PosInfos.html" title="haxe.PosInfos">PosInfos</a></td><td><p>PosInfos is a magic type which can be used to generate position information
|
||||
into the output for debugging use.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Serializer.html" title="haxe.Serializer">Serializer</a></td><td><p>The Serializer class can be used to encode values and objects into a <code><a href="../String.html">String</a></code>,
|
||||
from which the <code><a href="../haxe/Unserializer.html">Unserializer</a></code> class can recreate the original representation.</p></td></tr><tr class="enum"><td width="200"><a href="../haxe/StackItem.html" title="haxe.StackItem">StackItem</a></td><td><p>Elements return by <code><a href="../haxe/CallStack.html">CallStack</a></code> methods.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Template.html" title="haxe.Template">Template</a></td><td><p>Template provides a basic templating mechanism to replace values in a source
|
||||
String, and to have some basic logic.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Timer.html" title="haxe.Timer">Timer</a></td><td><p>The Timer class allows you to create asynchronous timers on platforms that
|
||||
support events.</p></td></tr><tr class="abstract"><td width="200"><a href="../haxe/Ucs2.html" title="haxe.Ucs2">Ucs2</a></td><td><p>Cross platform UCS2 string API.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Unserializer.html" title="haxe.Unserializer">Unserializer</a></td><td><p>The <code><a href="../haxe/Unserializer.html">Unserializer</a></code> class is the complement to the <code><a href="../haxe/Serializer.html">Serializer</a></code> class. It parses
|
||||
a serialization <code><a href="../String.html">String</a></code> and creates objects from the contained data.</p></td></tr><tr class="class"><td width="200"><a href="../haxe/Utf8.html" title="haxe.Utf8">Utf8</a></td><td><p>Since not all platforms guarantee that <code><a href="../String.html">String</a></code> always uses UTF-8 encoding, you
|
||||
can use this cross-platform API to perform operations on such strings.</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="..//highlighter.js"></script><link href="../highlighter.css" rel="stylesheet"/></body></html>
|
||||
44
hGameTest/node_modules/openfl/docs/pages/haxe/io/Bytes.html
generated
vendored
Normal file
44
hGameTest/node_modules/openfl/docs/pages/haxe/io/Bytes.html
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.Bytes - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Bytes</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="length"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/io/Bytes.html#length"><span class="identifier">length</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="blit"></a><h3><p><code><a href="#blit"><span class="identifier">blit</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">src:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a>,</span> <span style="white-space:nowrap">srcpos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="compare"></a><h3><p><code><a href="#compare"><span class="identifier">compare</span></a> (<span style="white-space:nowrap">other:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="fill"></a><h3><p><code><a href="#fill"><span class="identifier">fill</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">value:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="get"></a><h3><p><code><span class="label">inline</span> <a href="#get"><span class="identifier">get</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="getData"></a><h3><p><code><span class="label">inline</span> <a href="#getData"><span class="identifier">getData</span></a> ():<a class="type" title="" href="../../haxe/io/BytesData.html">BytesData</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="getDouble"></a><h3><p><code><a href="#getDouble"><span class="identifier">getDouble</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></code></p></h3><div class="doc"><p>Returns the IEEE double precision value at given position (in low endian encoding).
|
||||
Result is unspecified if reading outside of the bounds</p></div></div><div class="field "><a name="getFloat"></a><h3><p><code><a href="#getFloat"><span class="identifier">getFloat</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></code></p></h3><div class="doc"><p>Returns the IEEE single precision value at given position (in low endian encoding).
|
||||
Result is unspecified if reading outside of the bounds</p></div></div><div class="field "><a name="getInt32"></a><h3><p><code><a href="#getInt32"><span class="identifier">getInt32</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Returns the 32 bit integer at given position (in low endian encoding).</p></div></div><div class="field "><a name="getInt64"></a><h3><p><code><a href="#getInt64"><span class="identifier">getInt64</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="A cross-platform signed 64-bit integer." href="../../haxe/Int64.html">Int64</a></code></p></h3><div class="doc"><p>Returns the 64 bit integer at given position (in low endian encoding).</p></div></div><div class="field "><a name="getString"></a><h3><p><code><a href="#getString"><span class="identifier">getString</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="getUInt16"></a><h3><p><code><a href="#getUInt16"><span class="identifier">getUInt16</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Returns the 16 bit unsigned integer at given position (in low endian encoding).</p></div></div><div class="field "><a name="readString"></a><h3><p><code><span class="label">inline</span> <a href="#readString"><span class="identifier">readString</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="set"></a><h3><p><code><span class="label">inline</span> <a href="#set"><span class="identifier">set</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">v:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="setDouble"></a><h3><p><code><a href="#setDouble"><span class="identifier">setDouble</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">v:<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Store the IEEE double precision value at given position in low endian encoding.
|
||||
Result is unspecified if writing outside of the bounds.</p></div></div><div class="field "><a name="setFloat"></a><h3><p><code><a href="#setFloat"><span class="identifier">setFloat</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">v:<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Store the IEEE single precision value at given position in low endian encoding.
|
||||
Result is unspecified if writing outside of the bounds.</p></div></div><div class="field "><a name="setInt32"></a><h3><p><code><a href="#setInt32"><span class="identifier">setInt32</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">v:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Store the 32 bit integer at given position (in low endian encoding).</p></div></div><div class="field "><a name="setInt64"></a><h3><p><code><a href="#setInt64"><span class="identifier">setInt64</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">v:<a class="type" title="A cross-platform signed 64-bit integer." href="../../haxe/Int64.html">Int64</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Store the 64 bit integer at given position (in low endian encoding).</p></div></div><div class="field "><a name="setUInt16"></a><h3><p><code><a href="#setUInt16"><span class="identifier">setUInt16</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">v:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Store the 16 bit unsigned integer at given position (in low endian encoding).</p></div></div><div class="field "><a name="sub"></a><h3><p><code><a href="#sub"><span class="identifier">sub</span></a> (<span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="toHex"></a><h3><p><code><a href="#toHex"><span class="identifier">toHex</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="alloc"></a><h3><p><code><span class="label">static</span><a href="#alloc"><span class="identifier">alloc</span></a> (<span style="white-space:nowrap">length:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="fastGet"></a><h3><p><code><span class="label">static</span><span class="label">inline</span> <a href="#fastGet"><span class="identifier">fastGet</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/BytesData.html">BytesData</a>,</span> <span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Read the most efficiently possible the n-th byte of the data.
|
||||
Behavior when reading outside of the available data is unspecified.</p></div></div><div class="field "><a name="ofData"></a><h3><p><code><span class="label">static</span><a href="#ofData"><span class="identifier">ofData</span></a> (<span style="white-space:nowrap">b:<a class="type" title="" href="../../haxe/io/BytesData.html">BytesData</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="ofString"></a><h3><p><code><span class="label">static</span><a href="#ofString"><span class="identifier">ofString</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/io/BytesBuffer.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/io/BytesBuffer.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.BytesBuffer - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> BytesBuffer</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="length"></a><h3><p><code><span class="label">read only</span><span class="label">write only</span><a href="../../haxe/io/BytesBuffer.html#length"><span class="identifier">length</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>The length of the buffer in bytes.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="getBytes"></a><h3><p><code><a href="#getBytes"><span class="identifier">getBytes</span></a> ():<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p>Returns either a copy or a reference of the current bytes.
|
||||
Once called, the buffer can no longer be used.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/io/BytesData.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/io/BytesData.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.BytesData - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> BytesData</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4><h4><small>alias for <a class="type" title="" href="../../neko/NativeString.html">NativeString</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
48
hGameTest/node_modules/openfl/docs/pages/haxe/io/BytesOutput.html
generated
vendored
Normal file
48
hGameTest/node_modules/openfl/docs/pages/haxe/io/BytesOutput.html
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.BytesOutput - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> BytesOutput</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4><h4><small>extends <a class="type" title="An Output is an abstract write." href="../../haxe/io/Output.html">Output</a></small></h4> <p class="availability"><hr/><em>Available on Neko, macOS, Linux, Windows</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><div class="doc"><p></p></div></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="length"></a><h3><p><code><span class="label">read only</span><span class="label">write only</span><a href="../../haxe/io/BytesOutput.html#length"><span class="identifier">length</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>The length of the stream in bytes.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="getBytes"></a><h3><p><code><a href="#getBytes"><span class="identifier">getBytes</span></a> ():<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><div class="doc"><p>Returns the <code><a href="../../haxe/io/Bytes.html">Bytes</a></code> of this output.</p>
|
||||
<p>This function should not be called more than once on a given
|
||||
<code><a href="../../haxe/io/BytesOutput.html">BytesOutput</a></code> instance.</p></div></div></div> <div class="inherited-fields well"><h3 class="section">Inherited Variables</h3><div class="fields"><h4><a href="#" class="expand-button"><i class="fa fa-arrow-circle-o-right"></i></a> Defined by <a class="type" title="An Output is an abstract write." href="../../haxe/io/Output.html">Output</a></h4><div style="display:none"><div class="field "><a name="bigEndian"></a><h3><p><code><a href="../../haxe/io/Output.html#bigEndian"><span class="identifier">bigEndian</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Endianness (word byte order) used when writing numbers.</p>
|
||||
<p>If <code>true</code>, big-endian is used, otherwise <code>little-endian</code> is used.</p></div></div></div></div><h3 class="section">Inherited Methods</h3><div class="fields"><h4><a href="#" class="expand-button"><i class="fa fa-arrow-circle-o-right"></i></a> Defined by <a class="type" title="An Output is an abstract write." href="../../haxe/io/Output.html">Output</a></h4><div style="display:none"><div class="field "><a name="close"></a><h3><p><code><a href="#close"><span class="identifier">close</span></a> ():<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Close the output.</p>
|
||||
<p>Behaviour while writing after calling this method is unspecified.</p></div></div><div class="field "><a name="write"></a><h3><p><code><a href="#write"><span class="identifier">write</span></a> (<span style="white-space:nowrap">s:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write all bytes stored in <code>s</code>.</p></div></div><div class="field "><a name="writeFullBytes"></a><h3><p><code><a href="#writeFullBytes"><span class="identifier">writeFullBytes</span></a> (<span style="white-space:nowrap">s:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a>,</span> <span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>len</code> bytes from <code>s</code> starting by position specified by <code>pos</code>.</p>
|
||||
<p>Unlike <code>writeBytes</code>, this method tries to write the exact <code>len</code> amount of bytes.</p></div></div><div class="field "><a name="writeInput"></a><h3><p><code><a href="#writeInput"><span class="identifier">writeInput</span></a> (<span style="white-space:nowrap">i:<a class="type" title="An Input is an abstract reader." href="../../haxe/io/Input.html">Input</a>,</span> <span style="white-space:nowrap">?bufsize:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Read all available data from <code>i</code> and write it.</p>
|
||||
<p>The <code>bufsize</code> optional argument specifies the size of chunks by
|
||||
which data is read and written. Its default value is 4096.</p></div></div><div class="field "><a name="writeInt32"></a><h3><p><code><a href="#writeInt32"><span class="identifier">writeInt32</span></a> (<span style="white-space:nowrap">x:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>x</code> as 32-bit signed integer.</p>
|
||||
<p>Endianness is specified by the <code>bigEndian</code> property.</p></div></div><div class="field "><a name="writeString"></a><h3><p><code><a href="#writeString"><span class="identifier">writeString</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>s</code> string.</p></div></div><div class="field "><a name="writeUInt16"></a><h3><p><code><a href="#writeUInt16"><span class="identifier">writeUInt16</span></a> (<span style="white-space:nowrap">x:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>x</code> as 16-bit unsigned integer.</p>
|
||||
<p>Endianness is specified by the <code>bigEndian</code> property.</p></div></div></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/io/Eof.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/io/Eof.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.Eof - API Reference</title><meta name="description" content="This exception is raised when reading while data is no longer available in the <code><a href="../../haxe/io/Input.html">haxe.io.Input</a></code>."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Eof</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This exception is raised when reading while data is no longer available in the <code><a href="../../haxe/io/Input.html">haxe.io.Input</a></code>.</p></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> ()</code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/io/Error.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/io/Error.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.Error - API Reference</title><meta name="description" content="The possible IO errors that can occur"/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>enum</small> Error</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The possible IO errors that can occur</p></div></div><h3 class="section">Values</h3><div class="fields"><div class="field"><h3><code><a name="Blocked" href="#Blocked"><span class="identifier">Blocked</span></a></code></h3><div class="doc"><p>The IO is set into nonblocking mode and some data cannot be read or written</p></div></div><div class="field"><h3><code><a name="Overflow" href="#Overflow"><span class="identifier">Overflow</span></a></code></h3><div class="doc"><p>An integer value is outside its allowed range</p></div></div><div class="field"><h3><code><a name="OutsideBounds" href="#OutsideBounds"><span class="identifier">OutsideBounds</span></a></code></h3><div class="doc"><p>An operation on Bytes is outside of its valid range</p></div></div><div class="field"><h3><code><a name="Custom" href="#Custom"><span class="identifier">Custom</span></a>(e:<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a>)</code></h3><div class="doc"><p>Other errors</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
43
hGameTest/node_modules/openfl/docs/pages/haxe/io/FPHelper.html
generated
vendored
Normal file
43
hGameTest/node_modules/openfl/docs/pages/haxe/io/FPHelper.html
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.FPHelper - API Reference</title><meta name="description" content="Helper that converts between floating point and binary representation.
|
||||
Always works in low-endian encoding."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> FPHelper</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Helper that converts between floating point and binary representation.
|
||||
Always works in low-endian encoding.</p></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="doubleToI64"></a><h3><p><code><span class="label">static</span><a href="#doubleToI64"><span class="identifier">doubleToI64</span></a> (<span style="white-space:nowrap">v:<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></span>):<a class="type" title="A cross-platform signed 64-bit integer." href="../../haxe/Int64.html">Int64</a></code></p></h3><div class="doc"><p>Returns an Int64 representing the bytes representation of the double precision IEEE float value.
|
||||
WARNING : for performance reason, the same Int64 value might be reused every time. Copy its low/high values before calling again.
|
||||
We still ensure that this is safe to use in a multithread environment</p></div></div><div class="field "><a name="floatToI32"></a><h3><p><code><span class="label">static</span><a href="#floatToI32"><span class="identifier">floatToI32</span></a> (<span style="white-space:nowrap">f:<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="i32ToFloat"></a><h3><p><code><span class="label">static</span><a href="#i32ToFloat"><span class="identifier">i32ToFloat</span></a> (<span style="white-space:nowrap">i:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="i64ToDouble"></a><h3><p><code><span class="label">static</span><a href="#i64ToDouble"><span class="identifier">i64ToDouble</span></a> (<span style="white-space:nowrap">low:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">high:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Float type, this is a double-precision IEEE 64bit float." href="../../Float.html">Float</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
49
hGameTest/node_modules/openfl/docs/pages/haxe/io/Input.html
generated
vendored
Normal file
49
hGameTest/node_modules/openfl/docs/pages/haxe/io/Input.html
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.Input - API Reference</title><meta name="description" content="An Input is an abstract reader. See other classes in the <code>haxe.io</code> package
|
||||
for several possible implementations."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Input</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <h4><small><span class="muted">extended by </span><a class="type" title="Use sys." href="../../sys/io/FileInput.html">FileInput</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>An Input is an abstract reader. See other classes in the <code>haxe.io</code> package
|
||||
for several possible implementations.</p>
|
||||
<p>All functions which read data throw <code><a href="../../haxe/io/Eof.html">Eof</a></code> when the end of the stream
|
||||
is reached.</p></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="close"></a><h3><p><code><a href="#close"><span class="identifier">close</span></a> ():<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p>Close the input source.</p>
|
||||
<p>Behaviour while reading after calling this method is unspecified.</p></div></div><div class="field "><a name="readAll"></a><h3><p><code><a href="#readAll"><span class="identifier">readAll</span></a> (<span style="white-space:nowrap">?bufsize:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Read and return all available data.</p>
|
||||
<p>The <code>bufsize</code> optional argument specifies the size of chunks by
|
||||
which data is read. Its default value is target-specific.</p></div></div><div class="field "><a name="readByte"></a><h3><p><code><a href="#readByte"><span class="identifier">readByte</span></a> ():<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p>Read and return one byte.</p></div></div><div class="field "><a name="readBytes"></a><h3><p><code><a href="#readBytes"><span class="identifier">readBytes</span></a> (<span style="white-space:nowrap">s:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a>,</span> <span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Read <code>len</code> bytes and write them into <code>s</code> to the position specified by <code>pos</code>.</p>
|
||||
<p>Returns the actual length of read data that can be smaller than <code>len</code>.</p>
|
||||
<p>See <code>readFullBytes</code> that tries to read the exact amount of specified bytes.</p></div></div><div class="field "><a name="readLine"></a><h3><p><code><a href="#readLine"><span class="identifier">readLine</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, Windows</em></p><div class="doc"><p>Read a line of text separated by CR and/or LF bytes.</p>
|
||||
<p>The CR/LF characters are not included in the resulting string.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
54
hGameTest/node_modules/openfl/docs/pages/haxe/io/Output.html
generated
vendored
Normal file
54
hGameTest/node_modules/openfl/docs/pages/haxe/io/Output.html
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.Output - API Reference</title><meta name="description" content="An Output is an abstract write. A specific output implementation will only
|
||||
have to override the <code>writeByte</code> and maybe the <code>write</code>, <code>flush</code> and <code>close</code>
|
||||
methods. See <code><a href="../../sys/io/File.html#write">File.write</a></code> and <code><a href="../../String.html#write">String.write</a></code> for two ways of creating an
|
||||
Output."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Output</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <h4><small><span class="muted">extended by </span><a class="type" title="" href="../../haxe/io/BytesOutput.html">BytesOutput</a>, <a class="type" title="Use sys." href="../../sys/io/FileOutput.html">FileOutput</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>An Output is an abstract write. A specific output implementation will only
|
||||
have to override the <code>writeByte</code> and maybe the <code>write</code>, <code>flush</code> and <code>close</code>
|
||||
methods. See <code><a href="../../sys/io/File.html#write">File.write</a></code> and <code><a href="../../String.html#write">String.write</a></code> for two ways of creating an
|
||||
Output.</p></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="bigEndian"></a><h3><p><code><a href="../../haxe/io/Output.html#bigEndian"><span class="identifier">bigEndian</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Endianness (word byte order) used when writing numbers.</p>
|
||||
<p>If <code>true</code>, big-endian is used, otherwise <code>little-endian</code> is used.</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="close"></a><h3><p><code><a href="#close"><span class="identifier">close</span></a> ():<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Close the output.</p>
|
||||
<p>Behaviour while writing after calling this method is unspecified.</p></div></div><div class="field "><a name="write"></a><h3><p><code><a href="#write"><span class="identifier">write</span></a> (<span style="white-space:nowrap">s:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write all bytes stored in <code>s</code>.</p></div></div><div class="field "><a name="writeByte"></a><h3><p><code><a href="#writeByte"><span class="identifier">writeByte</span></a> (<span style="white-space:nowrap">c:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write one byte.</p></div></div><div class="field "><a name="writeBytes"></a><h3><p><code><a href="#writeBytes"><span class="identifier">writeBytes</span></a> (<span style="white-space:nowrap">s:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a>,</span> <span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>len</code> bytes from <code>s</code> starting by position specified by <code>pos</code>.</p>
|
||||
<p>Returns the actual length of written data that can differ from <code>len</code>.</p>
|
||||
<p>See <code>writeFullBytes</code> that tries to write the exact amount of specified bytes.</p></div></div><div class="field "><a name="writeFullBytes"></a><h3><p><code><a href="#writeFullBytes"><span class="identifier">writeFullBytes</span></a> (<span style="white-space:nowrap">s:<a class="type" title="" href="../../haxe/io/Bytes.html">Bytes</a>,</span> <span style="white-space:nowrap">pos:<a class="type" title="The standard Int type." href="../../Int.html">Int</a>,</span> <span style="white-space:nowrap">len:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>len</code> bytes from <code>s</code> starting by position specified by <code>pos</code>.</p>
|
||||
<p>Unlike <code>writeBytes</code>, this method tries to write the exact <code>len</code> amount of bytes.</p></div></div><div class="field "><a name="writeInput"></a><h3><p><code><a href="#writeInput"><span class="identifier">writeInput</span></a> (<span style="white-space:nowrap">i:<a class="type" title="An Input is an abstract reader." href="../../haxe/io/Input.html">Input</a>,</span> <span style="white-space:nowrap">?bufsize:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Read all available data from <code>i</code> and write it.</p>
|
||||
<p>The <code>bufsize</code> optional argument specifies the size of chunks by
|
||||
which data is read and written. Its default value is 4096.</p></div></div><div class="field "><a name="writeInt32"></a><h3><p><code><a href="#writeInt32"><span class="identifier">writeInt32</span></a> (<span style="white-space:nowrap">x:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>x</code> as 32-bit signed integer.</p>
|
||||
<p>Endianness is specified by the <code>bigEndian</code> property.</p></div></div><div class="field "><a name="writeString"></a><h3><p><code><a href="#writeString"><span class="identifier">writeString</span></a> (<span style="white-space:nowrap">s:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>s</code> string.</p></div></div><div class="field "><a name="writeUInt16"></a><h3><p><code><a href="#writeUInt16"><span class="identifier">writeUInt16</span></a> (<span style="white-space:nowrap">x:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Write <code>x</code> as 16-bit unsigned integer.</p>
|
||||
<p>Endianness is specified by the <code>bigEndian</code> property.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
80
hGameTest/node_modules/openfl/docs/pages/haxe/io/Path.html
generated
vendored
Normal file
80
hGameTest/node_modules/openfl/docs/pages/haxe/io/Path.html
generated
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io.Path - API Reference</title><meta name="description" content="This class provides a convenient way of working with paths. It supports the
|
||||
common path formats:"/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Path</h1><h4><small>package <a href="../../haxe/io/index.html">haxe.io</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This class provides a convenient way of working with paths. It supports the
|
||||
common path formats:</p><ul><li>directory1/directory2/filename.extension</li><li>directory1\directory2\filename.extension</li></ul></div></div><h3 class="section">Constructor</h3><div class="fields"><div class="field "><a name="new"></a><h3><p><code><a href="#new"><span class="identifier">new</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>)</code></p></h3><div class="doc"><p>Creates a new Path instance by parsing <code>path</code>.</p>
|
||||
<p>Path information can be retrieved by accessing the dir, file and ext
|
||||
properties.</p></div></div></div><h3 class="section">Variables</h3><div class="fields"><div class="field "><a name="backslash"></a><h3><p><code><a href="../../haxe/io/Path.html#backslash"><span class="identifier">backslash</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>True if the last directory separator is a backslash, false otherwise.</p></div></div><div class="field "><a name="dir"></a><h3><p><code><a href="../../haxe/io/Path.html#dir"><span class="identifier">dir</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The directory.</p>
|
||||
<p>This is the leading part of the path that is not part of the file name
|
||||
and the extension.</p>
|
||||
<p>Does not end with a <code>/</code> or <code>\</code> separator.</p>
|
||||
<p>If the path has no directory, the value is null.</p></div></div><div class="field "><a name="ext"></a><h3><p><code><a href="../../haxe/io/Path.html#ext"><span class="identifier">ext</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The file extension.</p>
|
||||
<p>It is separated from the file name by a dot. This dot is not part of
|
||||
the extension.</p>
|
||||
<p>If the path has no extension, the value is null.</p></div></div><div class="field "><a name="file"></a><h3><p><code><a href="../../haxe/io/Path.html#file"><span class="identifier">file</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The file name.</p>
|
||||
<p>This is the part of the part between the directory and the extension.</p>
|
||||
<p>If there is no file name, e.g. for ".htaccess" or "/dir/", the value
|
||||
is the empty String "".</p></div></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, HTML5, Windows</em></p><div class="doc"><p>Returns a String representation of <code>this</code> path.</p>
|
||||
<p>If <code>this.<a href="#backslash">backslash</a></code> is true, backslash is used as directory separator,
|
||||
otherwise slash is used. This only affects the separator between
|
||||
<code>this.<a href="#dir">dir</a></code> and <code>this.<a href="#file">file</a></code>.</p>
|
||||
<p>If <code>this.<a href="#directory">directory</a></code> or <code>this.<a href="#extension">extension</a></code> is null, their representation
|
||||
is the empty String "".</p></div></div></div><h3 class="section">Static methods</h3><div class="fields"><div class="field "><a name="addTrailingSlash"></a><h3><p><code><span class="label">static</span><a href="#addTrailingSlash"><span class="identifier">addTrailingSlash</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Adds a trailing slash to <code>path</code>, if it does not have one already.</p>
|
||||
<p>If the last slash in <code>path</code> is a backslash, a backslash is appended to
|
||||
<code>path</code>.</p>
|
||||
<p>If the last slash in <code>path</code> is a slash, or if no slash is found, a slash
|
||||
is appended to <code>path</code>. In particular, this applies to the empty String
|
||||
<code>""</code>.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="directory"></a><h3><p><code><span class="label">static</span><a href="#directory"><span class="identifier">directory</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>Returns the directory of <code>path</code>.</p>
|
||||
<p>If the directory is null, the empty String <code>""</code> is returned.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="extension"></a><h3><p><code><span class="label">static</span><a href="#extension"><span class="identifier">extension</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, Flash, macOS, Linux, Windows</em></p><div class="doc"><p>Returns the extension of <code>path</code>.</p>
|
||||
<p>If the extension is null, the empty String <code>""</code> is returned.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="isAbsolute"></a><h3><p><code><span class="label">static</span><a href="#isAbsolute"><span class="identifier">isAbsolute</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Returns true if the path is an absolute path, and false otherwise.</p></div></div><div class="field "><a name="join"></a><h3><p><code><span class="label">static</span><a href="#join"><span class="identifier">join</span></a> (<span style="white-space:nowrap">paths:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Joins all paths in <code>paths</code> together.</p>
|
||||
<p>If <code>paths</code> is empty, the empty String <code>""</code> is returned. Otherwise the
|
||||
paths are joined with a slash between them.</p>
|
||||
<p>If <code>paths</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="normalize"></a><h3><p><code><span class="label">static</span><a href="#normalize"><span class="identifier">normalize</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Normalize a given <code>path</code> (e.g. make '/usr/local/../lib' to '/usr/lib').</p>
|
||||
<p>Also replaces backslashes \ with slashes / and afterwards turns
|
||||
multiple slashes into a single one.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="removeTrailingSlashes"></a><h3><p><code><span class="label">static</span><a href="#removeTrailingSlashes"><span class="identifier">removeTrailingSlashes</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Removes trailing slashes from <code>path</code>.</p>
|
||||
<p>If <code>path</code> does not end with a <code>/</code> or <code>\</code>, <code>path</code> is returned unchanged.</p>
|
||||
<p>Otherwise the substring of <code>path</code> excluding the trailing slashes or
|
||||
backslashes is returned.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="withoutDirectory"></a><h3><p><code><span class="label">static</span><a href="#withoutDirectory"><span class="identifier">withoutDirectory</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, Android, iOS, macOS, Linux, HTML5, Windows</em></p><div class="doc"><p>Returns the String representation of <code>path</code> without the directory.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div><div class="field "><a name="withoutExtension"></a><h3><p><code><span class="label">static</span><a href="#withoutExtension"><span class="identifier">withoutExtension</span></a> (<span style="white-space:nowrap">path:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><p class="availability"><em>Available on Neko, macOS, Linux, Windows</em></p><div class="doc"><p>Returns the String representation of <code>path</code> without the file extension.</p>
|
||||
<p>If <code>path</code> is null, the result is unspecified.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
78
hGameTest/node_modules/openfl/docs/pages/haxe/io/index.html
generated
vendored
Normal file
78
hGameTest/node_modules/openfl/docs/pages/haxe/io/index.html
generated
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.io - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.io </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/Bytes.html" title="haxe.io.Bytes">Bytes</a></td><td><p></p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/BytesBuffer.html" title="haxe.io.BytesBuffer">BytesBuffer</a></td><td><p></p></td></tr><tr class="type"><td width="200"><a href="../../haxe/io/BytesData.html" title="haxe.io.BytesData">BytesData</a></td><td><p></p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/BytesOutput.html" title="haxe.io.BytesOutput">BytesOutput</a></td><td><p></p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/Eof.html" title="haxe.io.Eof">Eof</a></td><td><p>This exception is raised when reading while data is no longer available in the <code><a href="../../haxe/io/Input.html">haxe.io.Input</a></code>.</p></td></tr><tr class="enum"><td width="200"><a href="../../haxe/io/Error.html" title="haxe.io.Error">Error</a></td><td><p>The possible IO errors that can occur</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/FPHelper.html" title="haxe.io.FPHelper">FPHelper</a></td><td><p>Helper that converts between floating point and binary representation.
|
||||
Always works in low-endian encoding.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/Input.html" title="haxe.io.Input">Input</a></td><td><p>An Input is an abstract reader. See other classes in the <code>haxe.io</code> package
|
||||
for several possible implementations.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/Output.html" title="haxe.io.Output">Output</a></td><td><p>An Output is an abstract write. A specific output implementation will only
|
||||
have to override the <code>writeByte</code> and maybe the <code>write</code>, <code>flush</code> and <code>close</code>
|
||||
methods. See <code><a href="../../sys/io/File.html#write">File.write</a></code> and <code><a href="../../String.html#write">String.write</a></code> for two ways of creating an
|
||||
Output.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/io/Path.html" title="haxe.io.Path">Path</a></td><td><p>This class provides a convenient way of working with paths. It supports the
|
||||
common path formats:</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/AbstractType.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/AbstractType.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/AnonType.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/AnonType.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.AnonType - API Reference</title><meta name="description" content="Represents information for anonymous structure types."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> AnonType</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents information for anonymous structure types.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="fields"></a><h3><p><code><a href="../../haxe/macro/AnonType.html#fields"><span class="identifier">fields</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a class field." href="../../haxe/macro/ClassField.html">ClassField</a>></code></p></h3><div class="doc"><p>The class fields of the structure.</p></div></div><div class="field "><a name="status"></a><h3><p><code><a href="../../haxe/macro/AnonType.html#status"><span class="identifier">status</span></a>:<span class="type">AnonStatus</span></code></p></h3><div class="doc"><p>The status/kind of the structure.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/BaseType.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/BaseType.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.BaseType - API Reference</title><meta name="description" content="The information that all types (<code><a href="../../haxe/macro/ClassType.html">ClassType</a></code>, <code><a href="../../haxe/macro/EnumType.html">EnumType</a></code>, <code><a href="../../haxe/macro/DefType.html">DefType</a></code>,
|
||||
<code><a href="../../haxe/macro/AbstractType.html">AbstractType</a></code>) have in common."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> BaseType</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The information that all types (<code><a href="../../haxe/macro/ClassType.html">ClassType</a></code>, <code><a href="../../haxe/macro/EnumType.html">EnumType</a></code>, <code><a href="../../haxe/macro/DefType.html">DefType</a></code>,
|
||||
<code><a href="../../haxe/macro/AbstractType.html">AbstractType</a></code>) have in common.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="doc"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#doc"><span class="identifier">doc</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The associated documentation of the class field.</p></div></div><div class="field "><a name="isExtern"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#isExtern"><span class="identifier">isExtern</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the type is extern.</p></div></div><div class="field "><a name="isPrivate"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#isPrivate"><span class="identifier">isPrivate</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the type is private.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="MetaAccess is a wrapper for the Metadata array." href="../../haxe/macro/MetaAccess.html">MetaAccess</a></code></p></h3><div class="doc"><p>The metadata of the type.</p></div></div><div class="field "><a name="module"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#module"><span class="identifier">module</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The module name of the type, which might be different.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the type.</p></div></div><div class="field "><a name="pack"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#pack"><span class="identifier">pack</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The package of the type.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#params"><span class="identifier">params</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents the declaration of type parameters." href="../../haxe/macro/TypeParameter.html">TypeParameter</a>></code></p></h3><div class="doc"><p>The type parameters of the type.</p></div></div><div class="field "><a name="pos"></a><h3><p><code><a href="../../haxe/macro/BaseType.html#pos"><span class="identifier">pos</span></a>:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></code></p></h3><div class="doc"><p>The position of the type.</p></div></div><div class="field "><a name="exclude"></a><h3><p><code><a href="#exclude"><span class="identifier">exclude</span></a> ():<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Allows excluding the type from compilation.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Case.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Case.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Case - API Reference</title><meta name="description" content="Represents a switch case."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Case</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a switch case.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/expression-switch.html">https://haxe.org/manual/expression-switch.html</a></p></div></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/Case.html#expr"><span class="identifier">expr</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>></code></p></h3><div class="doc"><p>The expression of the case, if available.</p></div></div><div class="field "><a name="guard"></a><h3><p><code><a href="../../haxe/macro/Case.html#guard"><span class="identifier">guard</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>>></code></p></h3><div class="doc"><p>The optional guard expressions of the case, if available.</p></div></div><div class="field "><a name="values"></a><h3><p><code><a href="../../haxe/macro/Case.html#values"><span class="identifier">values</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>></code></p></h3><div class="doc"><p>The value expressions of the case.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Catch.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Catch.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Catch - API Reference</title><meta name="description" content="Represents a catch in the AST.
|
||||
@<a href="https://haxe.org/manual/expression-try-catch.html">https://haxe.org/manual/expression-try-catch.html</a>"/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Catch</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a catch in the AST.
|
||||
@<a href="https://haxe.org/manual/expression-try-catch.html">https://haxe.org/manual/expression-try-catch.html</a></p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/Catch.html#expr"><span class="identifier">expr</span></a>:<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a></code></p></h3><div class="doc"><p>The expression of the catch.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/Catch.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the catch variable.</p></div></div><div class="field "><a name="type"></a><h3><p><code><a href="../../haxe/macro/Catch.html#type"><span class="identifier">type</span></a>:<span class="type">ComplexType</span></code></p></h3><div class="doc"><p>The type of the catch.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ClassField.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ClassField.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ClassType.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ClassType.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/DefType.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/DefType.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/EnumField.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/EnumField.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.EnumField - API Reference</title><meta name="description" content="Represents an enum constructor."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> EnumField</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents an enum constructor.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="doc"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#doc"><span class="identifier">doc</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The associated documentation of the enum constructor.</p></div></div><div class="field "><a name="index"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#index"><span class="identifier">index</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>The index of the enum constructor, i.e. in which position it appears
|
||||
in the syntax.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="MetaAccess is a wrapper for the Metadata array." href="../../haxe/macro/MetaAccess.html">MetaAccess</a></code></p></h3><div class="doc"><p>The metadata of the enum constructor.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the enum constructor.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#params"><span class="identifier">params</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents the declaration of type parameters." href="../../haxe/macro/TypeParameter.html">TypeParameter</a>></code></p></h3><div class="doc"><p>The type parameters of the enum constructor.</p></div></div><div class="field "><a name="pos"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#pos"><span class="identifier">pos</span></a>:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></code></p></h3><div class="doc"><p>The position of the enum constructor.</p></div></div><div class="field "><a name="type"></a><h3><p><code><a href="../../haxe/macro/EnumField.html#type"><span class="identifier">type</span></a>:<span class="type">Type</span></code></p></h3><div class="doc"><p>The type of the enum constructor.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/EnumType.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/EnumType.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Expr.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Expr.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Expr - API Reference</title><meta name="description" content="Represents a node in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Expr</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a node in the AST.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/macro-reification-expression.html">https://haxe.org/manual/macro-reification-expression.html</a></p></div></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/Expr.html#expr"><span class="identifier">expr</span></a>:<span class="type">ExprDef</span></code></p></h3><div class="doc"><p>The expression kind.</p></div></div><div class="field "><a name="pos"></a><h3><p><code><a href="../../haxe/macro/Expr.html#pos"><span class="identifier">pos</span></a>:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></code></p></h3><div class="doc"><p>The position of the expression.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ExprOf.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ExprOf.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.ExprOf - API Reference</title><meta name="description" content="Represents a AST node identical to <code><a href="../../haxe/macro/Expr.html">Expr</a></code>, but it allows constraining the
|
||||
type of accepted expressions."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> ExprOf<<span class="type">T</span>></h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><h4><small>alias for <a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a AST node identical to <code><a href="../../haxe/macro/Expr.html">Expr</a></code>, but it allows constraining the
|
||||
type of accepted expressions.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/macro-ExprOf.html">https://haxe.org/manual/macro-ExprOf.html</a></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Field.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Field.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Field - API Reference</title><meta name="description" content="Represents a field in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Field</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a field in the AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="access"></a><h3><p><code><a href="../../haxe/macro/Field.html#access"><span class="identifier">access</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<span class="type">Access</span>>></code></p></h3><div class="doc"><p>The access modifiers of the field. By default fields have private access.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/class-field-access-modifier.html">https://haxe.org/manual/class-field-access-modifier.html</a></p></div></div></div><div class="field "><a name="doc"></a><h3><p><code><a href="../../haxe/macro/Field.html#doc"><span class="identifier">doc</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>>></code></p></h3><div class="doc"><p>The documentation of the field, if available. If the field has no
|
||||
documentation, the value is <code>null</code>.</p></div></div><div class="field "><a name="kind"></a><h3><p><code><a href="../../haxe/macro/Field.html#kind"><span class="identifier">kind</span></a>:<span class="type">FieldType</span></code></p></h3><div class="doc"><p>The kind of the field.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/macro/Field.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents metadata in the AST." href="../../haxe/macro/Metadata.html">Metadata</a>></code></p></h3><div class="doc"><p>The optional metadata of the field.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/Field.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the field.</p></div></div><div class="field "><a name="pos"></a><h3><p><code><a href="../../haxe/macro/Field.html#pos"><span class="identifier">pos</span></a>:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></code></p></h3><div class="doc"><p>The position of the field.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Function.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Function.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Function - API Reference</title><meta name="description" content="Represents a function in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Function</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a function in the AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="args"></a><h3><p><code><a href="../../haxe/macro/Function.html#args"><span class="identifier">args</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a function argument in the AST." href="../../haxe/macro/FunctionArg.html">FunctionArg</a>></code></p></h3><div class="doc"><p>A list of function arguments.</p></div></div><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/Function.html#expr"><span class="identifier">expr</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>></code></p></h3><div class="doc"><p>The expression of the function body, if available.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/macro/Function.html#params"><span class="identifier">params</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a type parameter declaration in the AST." href="../../haxe/macro/TypeParamDecl.html">TypeParamDecl</a>>></code></p></h3><div class="doc"><p>An optional list of function parameter type declarations.</p></div></div><div class="field "><a name="ret"></a><h3><p><code><a href="../../haxe/macro/Function.html#ret"><span class="identifier">ret</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">ComplexType</span>></code></p></h3><div class="doc"><p>The return type-hint of the function, if available.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/FunctionArg.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/FunctionArg.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.FunctionArg - API Reference</title><meta name="description" content="Represents a function argument in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> FunctionArg</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a function argument in the AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/macro/FunctionArg.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents metadata in the AST." href="../../haxe/macro/Metadata.html">Metadata</a>></code></p></h3><div class="doc"><p>The metadata of the function argument.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/FunctionArg.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the function argument.</p></div></div><div class="field "><a name="opt"></a><h3><p><code><a href="../../haxe/macro/FunctionArg.html#opt"><span class="identifier">opt</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a>></code></p></h3><div class="doc"><p>Whether or not the function argument is optional.</p></div></div><div class="field "><a name="type"></a><h3><p><code><a href="../../haxe/macro/FunctionArg.html#type"><span class="identifier">type</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">ComplexType</span>></code></p></h3><div class="doc"><p>The type-hint of the function argument, if available.</p></div></div><div class="field "><a name="value"></a><h3><p><code><a href="../../haxe/macro/FunctionArg.html#value"><span class="identifier">value</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>>></code></p></h3><div class="doc"><p>The optional value of the function argument, if available.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ImportExpr.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/ImportExpr.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.ImportExpr - API Reference</title><meta name="description" content="Represents the import expression."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> ImportExpr</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents the import expression.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="mode"></a><h3><p><code><a href="../../haxe/macro/ImportExpr.html#mode"><span class="identifier">mode</span></a>:<span class="type">ImportMode</span></code></p></h3><div class="doc"><p>The mode of the import expression.</p></div></div><div class="field "><a name="path"></a><h3><p><code><a href="../../haxe/macro/ImportExpr.html#path"><span class="identifier">path</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><{pos:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a>, name:<a class="type" title="The basic String class." href="../../String.html">String</a>}></code></p></h3><div class="doc"><p>The path to the import expression.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/IncludePosition.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/IncludePosition.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.IncludePosition - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>abstract</small> IncludePosition(<a class="type" title="The basic String class." href="../../String.html">String</a>)</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><h4><small>from <a class="type" title="The basic String class." href="../../String.html">String</a></small><small> to <a class="type" title="The basic String class." href="../../String.html">String</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Compiler.html">haxe.macro.Compiler</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/JSGenApi.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/JSGenApi.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/MacroType.html
generated
vendored
Normal file
41
hGameTest/node_modules/openfl/docs/pages/haxe/macro/MacroType.html
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.MacroType - API Reference</title><meta name="description" content="This type is meant to be used to generate custom types using a macro.
|
||||
For instance by doing MacroType&lt;[my.Class.myMacro(55)]>"/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> MacroType<<span class="type">Const</span>></h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>This type is meant to be used to generate custom types using a macro.
|
||||
For instance by doing MacroType<[my.Class.myMacro(55)]></p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
57
hGameTest/node_modules/openfl/docs/pages/haxe/macro/MetaAccess.html
generated
vendored
Normal file
57
hGameTest/node_modules/openfl/docs/pages/haxe/macro/MetaAccess.html
generated
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.MetaAccess - API Reference</title><meta name="description" content="MetaAccess is a wrapper for the <code><a href="../../haxe/macro/Metadata.html">Metadata</a></code> array. It can be used to add
|
||||
metadata to and remove metadata from its origin."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> MetaAccess</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>MetaAccess is a wrapper for the <code><a href="../../haxe/macro/Metadata.html">Metadata</a></code> array. It can be used to add
|
||||
metadata to and remove metadata from its origin.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="add"></a><h3><p><code><a href="#add"><span class="identifier">add</span></a> (<span style="white-space:nowrap">name:<a class="type" title="The basic String class." href="../../String.html">String</a>,</span> <span style="white-space:nowrap">params:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>>,</span> <span style="white-space:nowrap">pos:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Adds the metadata specified by <code>name</code>, <code>params</code> and <code>pos</code> to the origin
|
||||
of <code>this</code> MetaAccess.</p>
|
||||
<p>Metadata names are not unique during compilation, so this method never
|
||||
overwrites a previous metadata.</p>
|
||||
<p>If a <code><a href="../../haxe/macro/Metadata.html">Metadata</a></code> array is obtained through a call to <code>get</code>, a subsequent
|
||||
call to <code>add</code> has no effect on that array.</p>
|
||||
<p>If any argument is null, compilation fails with an error.</p></div></div><div class="field "><a name="extract"></a><h3><p><code><a href="#extract"><span class="identifier">extract</span></a> (<span style="white-space:nowrap">name:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a metadata entry in the AST." href="../../haxe/macro/MetadataEntry.html">MetadataEntry</a>></code></p></h3><div class="doc"><p>Extract metadata entries by given <code>name</code>.</p>
|
||||
<p>If there's no metadata with such name, empty array <code>[]</code> is returned.</p>
|
||||
<p>If <code>name</code> is null, compilation fails with an error.</p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> ():<a class="type" title="Represents metadata in the AST." href="../../haxe/macro/Metadata.html">Metadata</a></code></p></h3><div class="doc"><p>Return the wrapped <code><a href="../../haxe/macro/Metadata.html">Metadata</a></code> array.</p>
|
||||
<p>Modifying this array has no effect on the origin of <code>this</code> MetaAccess.
|
||||
The <code>add</code> and <code>remove</code> methods can be used for that.</p></div></div><div class="field "><a name="has"></a><h3><p><code><a href="#has"><span class="identifier">has</span></a> (<span style="white-space:nowrap">name:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Tells if the origin of <code>this</code> MetaAccess has a <code>name</code> metadata entry.</p>
|
||||
<p>If <code>name</code> is null, compilation fails with an error.</p></div></div><div class="field "><a name="remove"></a><h3><p><code><a href="#remove"><span class="identifier">remove</span></a> (<span style="white-space:nowrap">name:<a class="type" title="The basic String class." href="../../String.html">String</a></span>):<a class="type" title="The standard Void type." href="../../Void.html">Void</a></code></p></h3><div class="doc"><p>Removes all <code>name</code> metadata entries from the origin of <code>this</code>
|
||||
MetaAccess.</p>
|
||||
<p>This method might clear several metadata entries of the same name.</p>
|
||||
<p>If a <code><a href="../../haxe/macro/Metadata.html">Metadata</a></code> array is obtained through a call to <code>get</code>, a subsequent
|
||||
call to <code>remove</code> has no effect on that array.</p>
|
||||
<p>If <code>name</code> is null, compilation fails with an error.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Metadata.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Metadata.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Metadata - API Reference</title><meta name="description" content="Represents metadata in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Metadata</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><h4><small>alias for <a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a metadata entry in the AST." href="../../haxe/macro/MetadataEntry.html">MetadataEntry</a>></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents metadata in the AST.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/MetadataEntry.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/MetadataEntry.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.MetadataEntry - API Reference</title><meta name="description" content="Represents a metadata entry in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> MetadataEntry</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a metadata entry in the AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/MetadataEntry.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the metadata entry.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/macro/MetadataEntry.html#params"><span class="identifier">params</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>>></code></p></h3><div class="doc"><p>The optional parameters of the metadata entry.</p></div></div><div class="field "><a name="pos"></a><h3><p><code><a href="../../haxe/macro/MetadataEntry.html#pos"><span class="identifier">pos</span></a>:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></code></p></h3><div class="doc"><p>The position of the metadata entry.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Position.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Position.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Position - API Reference</title><meta name="description" content="Represents a position in a file."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Position</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a position in a file.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="file"></a><h3><p><code><a href="../../haxe/macro/Position.html#file"><span class="identifier">file</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>Reference to the filename.</p></div></div><div class="field "><a name="max"></a><h3><p><code><a href="../../haxe/macro/Position.html#max"><span class="identifier">max</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Position of the last character.</p></div></div><div class="field "><a name="min"></a><h3><p><code><a href="../../haxe/macro/Position.html#min"><span class="identifier">min</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>Position of the first character.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
44
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Ref.html
generated
vendored
Normal file
44
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Ref.html
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Ref - API Reference</title><meta name="description" content="Represents a reference to internal compiler structure. It exists to avoid
|
||||
expensive encoding if it is not required and to ensure that physical
|
||||
equality remains intact."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Ref<<span class="type">T</span>></h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a reference to internal compiler structure. It exists to avoid
|
||||
expensive encoding if it is not required and to ensure that physical
|
||||
equality remains intact.</p>
|
||||
<p>A structure is only encoded when user requests it through <code>ref.get()</code>.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="get"></a><h3><p><code><a href="#get"><span class="identifier">get</span></a> ():<span class="type">T</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="toString"></a><h3><p><code><a href="#toString"><span class="identifier">toString</span></a> ():<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TFunc.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TFunc.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.TFunc - API Reference</title><meta name="description" content="Represents a function in the typed AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> TFunc</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a function in the typed AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="args"></a><h3><p><code><a href="../../haxe/macro/TFunc.html#args"><span class="identifier">args</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><{value:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">TConstant</span>>, v:<a class="type" title="Represents a variable in the typed AST." href="../../haxe/macro/TVar.html">TVar</a>}></code></p></h3><div class="doc"><p>A list of function arguments identified by an argument variable <code>v</code> and
|
||||
an optional initialization <code>value</code>.</p></div></div><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/TFunc.html#expr"><span class="identifier">expr</span></a>:<a class="type" title="Represents a typed AST node." href="../../haxe/macro/TypedExpr.html">TypedExpr</a></code></p></h3><div class="doc"><p>The expression of the function body.</p></div></div><div class="field "><a name="t"></a><h3><p><code><a href="../../haxe/macro/TFunc.html#t"><span class="identifier">t</span></a>:<span class="type">Type</span></code></p></h3><div class="doc"><p>The return type of the function.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TVar.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TVar.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.TVar - API Reference</title><meta name="description" content="Represents a variable in the typed AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> TVar</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a variable in the typed AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="capture"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/macro/TVar.html#capture"><span class="identifier">capture</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the variable has been captured by a closure.</p></div></div><div class="field "><a name="extra"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/macro/TVar.html#extra"><span class="identifier">extra</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><{params:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents the declaration of type parameters." href="../../haxe/macro/TypeParameter.html">TypeParameter</a>>, expr:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents a typed AST node." href="../../haxe/macro/TypedExpr.html">TypedExpr</a>>}></code></p></h3><div class="doc"><p>Special information which is internally used to keep track of closure.
|
||||
information</p></div></div><div class="field "><a name="id"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/macro/TVar.html#id"><span class="identifier">id</span></a>:<a class="type" title="The standard Int type." href="../../Int.html">Int</a></code></p></h3><div class="doc"><p>The unique ID of the variable.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/macro/TVar.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="MetaAccess is a wrapper for the Metadata array." href="../../haxe/macro/MetaAccess.html">MetaAccess</a>></code></p></h3><div class="doc"><p>The metadata of the variable.</p></div></div><div class="field "><a name="name"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/macro/TVar.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the variable.</p></div></div><div class="field "><a name="t"></a><h3><p><code><span class="label">read only</span><a href="../../haxe/macro/TVar.html#t"><span class="identifier">t</span></a>:<span class="type">Type</span></code></p></h3><div class="doc"><p>The type of the variable.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypeDefinition.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypeDefinition.html
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypeParamDecl.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypeParamDecl.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.TypeParamDecl - API Reference</title><meta name="description" content="Represents a type parameter declaration in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> TypeParamDecl</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a type parameter declaration in the AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="constraints"></a><h3><p><code><a href="../../haxe/macro/TypeParamDecl.html#constraints"><span class="identifier">constraints</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<span class="type">ComplexType</span>>></code></p></h3><div class="doc"><p>The optional constraints of the type parameter.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/macro/TypeParamDecl.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents metadata in the AST." href="../../haxe/macro/Metadata.html">Metadata</a>></code></p></h3><div class="doc"><p>The metadata of the type parameter.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/TypeParamDecl.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the type parameter.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/macro/TypeParamDecl.html#params"><span class="identifier">params</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Represents a type parameter declaration in the AST." href="../../haxe/macro/TypeParamDecl.html">TypeParamDecl</a>>></code></p></h3><div class="doc"><p>The optional parameters of the type parameter.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypeParameter.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypeParameter.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.TypeParameter - API Reference</title><meta name="description" content="Represents the declaration of type parameters."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> TypeParameter</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents the declaration of type parameters.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/TypeParameter.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the type parameter.</p></div></div><div class="field "><a name="t"></a><h3><p><code><a href="../../haxe/macro/TypeParameter.html#t"><span class="identifier">t</span></a>:<span class="type">Type</span></code></p></h3><div class="doc"><p>The type of the type parameter. It is guaranteed to be a <code>TInst</code> with a
|
||||
<code>KTypeParameter</code> kind.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypePath.html
generated
vendored
Normal file
40
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypePath.html
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.TypePath - API Reference</title><meta name="description" content="Represents a type path in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> TypePath</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a type path in the AST.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/TypePath.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the type path.</p></div></div><div class="field "><a name="pack"></a><h3><p><code><a href="../../haxe/macro/TypePath.html#pack"><span class="identifier">pack</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>Represents the package of the type path.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/macro/TypePath.html#params"><span class="identifier">params</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<span class="type">TypeParam</span>>></code></p></h3><div class="doc"><p>Optional parameters of the type path.</p></div></div><div class="field "><a name="sub"></a><h3><p><code><a href="../../haxe/macro/TypePath.html#sub"><span class="identifier">sub</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>>></code></p></h3><div class="doc"><p>Sub is set on module sub-type access:
|
||||
<code>pack.Module.Type</code> has name = Module, sub = Type, if available.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypedExpr.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/TypedExpr.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.TypedExpr - API Reference</title><meta name="description" content="Represents a typed AST node."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> TypedExpr</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Type.html">haxe.macro.Type</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a typed AST node.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/TypedExpr.html#expr"><span class="identifier">expr</span></a>:<span class="type">TypedExprDef</span></code></p></h3><div class="doc"><p>The expression kind.</p></div></div><div class="field "><a name="pos"></a><h3><p><code><a href="../../haxe/macro/TypedExpr.html#pos"><span class="identifier">pos</span></a>:<a class="type" title="Represents a position in a file." href="../../haxe/macro/Position.html">Position</a></code></p></h3><div class="doc"><p>The position of the expression.</p></div></div><div class="field "><a name="t"></a><h3><p><code><a href="../../haxe/macro/TypedExpr.html#t"><span class="identifier">t</span></a>:<span class="type">Type</span></code></p></h3><div class="doc"><p>The type of the expression.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Var.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/macro/Var.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro.Var - API Reference</title><meta name="description" content="Represents a variable in the AST."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Var</h1><h4><small>package <a href="../../haxe/macro/index.html">haxe.macro</a></small></h4><p><h4><small>import <a href="../../haxe/macro/Expr.html">haxe.macro.Expr</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Represents a variable in the AST.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/expression-var.html">https://haxe.org/manual/expression-var.html</a></p></div></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/macro/Var.html#expr"><span class="identifier">expr</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="Represents a node in the AST." href="../../haxe/macro/Expr.html">Expr</a>></code></p></h3><div class="doc"><p>The expression of the variable, if available.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/macro/Var.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the variable.</p></div></div><div class="field "><a name="type"></a><h3><p><code><a href="../../haxe/macro/Var.html#type"><span class="identifier">type</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">ComplexType</span>></code></p></h3><div class="doc"><p>The type-hint of the variable, if available.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
79
hGameTest/node_modules/openfl/docs/pages/haxe/macro/index.html
generated
vendored
Normal file
79
hGameTest/node_modules/openfl/docs/pages/haxe/macro/index.html
generated
vendored
Normal file
@@ -0,0 +1,79 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.macro - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.macro </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/AbstractType.html" title="haxe.macro.AbstractType">AbstractType</a></td><td><p>Represents an abstract type.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/AnonType.html" title="haxe.macro.AnonType">AnonType</a></td><td><p>Represents information for anonymous structure types.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/BaseType.html" title="haxe.macro.BaseType">BaseType</a></td><td><p>The information that all types (<code><a href="../../haxe/macro/ClassType.html">ClassType</a></code>, <code><a href="../../haxe/macro/EnumType.html">EnumType</a></code>, <code><a href="../../haxe/macro/DefType.html">DefType</a></code>,
|
||||
<code><a href="../../haxe/macro/AbstractType.html">AbstractType</a></code>) have in common.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Case.html" title="haxe.macro.Case">Case</a></td><td><p>Represents a switch case.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Catch.html" title="haxe.macro.Catch">Catch</a></td><td><p>Represents a catch in the AST.
|
||||
@<a href="https://haxe.org/manual/expression-try-catch.html">https://haxe.org/manual/expression-try-catch.html</a></p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/ClassField.html" title="haxe.macro.ClassField">ClassField</a></td><td><p>Represents a class field.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/ClassType.html" title="haxe.macro.ClassType">ClassType</a></td><td><p>Represents a class type.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/DefType.html" title="haxe.macro.DefType">DefType</a></td><td><p>Represents a typedef.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/EnumField.html" title="haxe.macro.EnumField">EnumField</a></td><td><p>Represents an enum constructor.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/EnumType.html" title="haxe.macro.EnumType">EnumType</a></td><td><p>Represents an enum type.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Expr.html" title="haxe.macro.Expr">Expr</a></td><td><p>Represents a node in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/ExprOf.html" title="haxe.macro.ExprOf">ExprOf</a></td><td><p>Represents a AST node identical to <code><a href="../../haxe/macro/Expr.html">Expr</a></code>, but it allows constraining the
|
||||
type of accepted expressions.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Field.html" title="haxe.macro.Field">Field</a></td><td><p>Represents a field in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Function.html" title="haxe.macro.Function">Function</a></td><td><p>Represents a function in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/FunctionArg.html" title="haxe.macro.FunctionArg">FunctionArg</a></td><td><p>Represents a function argument in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/ImportExpr.html" title="haxe.macro.ImportExpr">ImportExpr</a></td><td><p>Represents the import expression.</p></td></tr><tr class="abstract"><td width="200"><a href="../../haxe/macro/IncludePosition.html" title="haxe.macro.IncludePosition">IncludePosition</a></td><td><p></p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/JSGenApi.html" title="haxe.macro.JSGenApi">JSGenApi</a></td><td><p>This is the api that is passed to the custom JS generator.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/macro/MacroType.html" title="haxe.macro.MacroType">MacroType</a></td><td><p>This type is meant to be used to generate custom types using a macro.
|
||||
For instance by doing MacroType<[my.Class.myMacro(55)]></p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/MetaAccess.html" title="haxe.macro.MetaAccess">MetaAccess</a></td><td><p>MetaAccess is a wrapper for the <code><a href="../../haxe/macro/Metadata.html">Metadata</a></code> array. It can be used to add
|
||||
metadata to and remove metadata from its origin.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Metadata.html" title="haxe.macro.Metadata">Metadata</a></td><td><p>Represents metadata in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/MetadataEntry.html" title="haxe.macro.MetadataEntry">MetadataEntry</a></td><td><p>Represents a metadata entry in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Position.html" title="haxe.macro.Position">Position</a></td><td><p>Represents a position in a file.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Ref.html" title="haxe.macro.Ref">Ref</a></td><td><p>Represents a reference to internal compiler structure. It exists to avoid
|
||||
expensive encoding if it is not required and to ensure that physical
|
||||
equality remains intact.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TFunc.html" title="haxe.macro.TFunc">TFunc</a></td><td><p>Represents a function in the typed AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TVar.html" title="haxe.macro.TVar">TVar</a></td><td><p>Represents a variable in the typed AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TypeDefinition.html" title="haxe.macro.TypeDefinition">TypeDefinition</a></td><td><p>Represents a type definition.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TypeParamDecl.html" title="haxe.macro.TypeParamDecl">TypeParamDecl</a></td><td><p>Represents a type parameter declaration in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TypeParameter.html" title="haxe.macro.TypeParameter">TypeParameter</a></td><td><p>Represents the declaration of type parameters.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TypePath.html" title="haxe.macro.TypePath">TypePath</a></td><td><p>Represents a type path in the AST.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/TypedExpr.html" title="haxe.macro.TypedExpr">TypedExpr</a></td><td><p>Represents a typed AST node.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/macro/Var.html" title="haxe.macro.Var">Var</a></td><td><p>Represents a variable in the AST.</p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/AsyncConnection.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/AsyncConnection.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.remoting.AsyncConnection - API Reference</title><meta name="description" content="For asynchronous connections, where the results are events that will be resolved later in the execution process."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>interface</small> AsyncConnection</h1><h4><small>package <a href="../../haxe/remoting/index.html">haxe.remoting</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>For asynchronous connections, where the results are events that will be resolved later in the execution process.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/Connection.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/Connection.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.remoting.Connection - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>interface</small> Connection</h1><h4><small>package <a href="../../haxe/remoting/index.html">haxe.remoting</a></small></h4> <h4><small><span class="muted">implemented by </span><a class="type" title="Synchronous communications between Flash and Javascript." href="../../haxe/remoting/ExternalConnection.html">ExternalConnection</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/Context.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/Context.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.remoting.Context - API Reference</title><meta name="description" content="Allows communication between platforms. This is a shared API that can be called on the connection at the client code."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> Context</h1><h4><small>package <a href="../../haxe/remoting/index.html">haxe.remoting</a></small></h4> <p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Allows communication between platforms. This is a shared API that can be called on the connection at the client code.</p></div></div><h3 class="section">Methods</h3><div class="fields"><div class="field "><a name="call"></a><h3><p><code><a href="#call"><span class="identifier">call</span></a> (<span style="white-space:nowrap">path:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="The basic String class." href="../../String.html">String</a>>,</span> <span style="white-space:nowrap">params:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a>></span>):<a class="type" title="Dynamic is a special type which is compatible with all other types." href="../../Dynamic.html">Dynamic</a></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/ExternalConnection.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/ExternalConnection.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.remoting.ExternalConnection - API Reference</title><meta name="description" content="Synchronous communications between Flash and Javascript."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>class</small> ExternalConnection</h1><h4><small>package <a href="../../haxe/remoting/index.html">haxe.remoting</a></small></h4> <h4><small>implements <a class="type" title="" href="../../haxe/remoting/Connection.html">Connection</a></small></h4><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>Synchronous communications between Flash and Javascript.</p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/Socket.html
generated
vendored
Normal file
39
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/Socket.html
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.remoting.Socket - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Socket</h1><h4><small>package <a href="../../haxe/remoting/index.html">haxe.remoting</a></small></h4><h4><small>alias for <span class="type">Socket</span></small></h4><p><h4><small>import <a href="../../haxe/remoting/SocketProtocol.html">haxe.remoting.SocketProtocol</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p></p></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
72
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/index.html
generated
vendored
Normal file
72
hGameTest/node_modules/openfl/docs/pages/haxe/remoting/index.html
generated
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.remoting - API Reference</title></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><h1>haxe.remoting </h1><!--
|
||||
::if full == ""::
|
||||
<h1>Haxe API documentation <small ::cond api.isDefined("version")::>version ::api.getValue('version')::</small></h1>
|
||||
<p>Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.</p>
|
||||
<h3>Getting Started With Haxe</h3>
|
||||
<ul>
|
||||
<li>Take a look at our <a href="http://haxe.org/documentation/introduction/">introduction</a></li>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li>Look at these <a href="http://haxe.org/use-cases/">use cases for Haxe</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/all/">popular Haxe libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h3>Top Level</h3>
|
||||
::elseif full.split(".").length==1::
|
||||
<h1>Haxe/::full:: API documentation</h1>
|
||||
<p>To get started with the Haxe ::full:: target:</p>
|
||||
<ul>
|
||||
<li>Read through the <a href="http://haxe.org/manual/">Haxe Manual</a></li>
|
||||
<li ::cond full=="js"::>Read the <a href="http://haxe.org/manual/target-javascript.html">Haxe/JavaScript target details</a></li>
|
||||
<li ::cond full=="flash"::>Read the <a href="http://haxe.org/manual/target-flash.html">Haxe/Flash target details</a></li>
|
||||
<li ::cond full=="php"::>Read the <a href="http://haxe.org/manual/target-php.html">Haxe/PHP target details</a></li>
|
||||
<li ::cond full=="cpp"::>Read the <a href="http://haxe.org/manual/target-cpp.html">Haxe/C++ target details</a></li>
|
||||
<li ::cond full=="neko"::>Read the <a href="http://nekovm.org/doc">Neko documentation</a></li>
|
||||
<li>Find and install <a href="http://lib.haxe.org/t/::full::/">popular Haxe/::full:: libraries</a></li>
|
||||
<li>Learn by example with the <a href="http://code.haxe.org">Haxe Code Cookbook</a></li>
|
||||
</ul>
|
||||
<hr/>
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::else::
|
||||
<h1><small class="directive">package</small> ::full::</h1>
|
||||
::end::
|
||||
-->
|
||||
<table class="table table-condensed"><tbody><tr><th width="200"><i class="fa fa-folder-o"></i><a href="../index.html" title="haxe">..</a></th><td></td></tr><tr class="class"><td width="200"><a href="../../haxe/remoting/AsyncConnection.html" title="haxe.remoting.AsyncConnection">AsyncConnection</a></td><td><p>For asynchronous connections, where the results are events that will be resolved later in the execution process.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/remoting/Connection.html" title="haxe.remoting.Connection">Connection</a></td><td><p></p></td></tr><tr class="class"><td width="200"><a href="../../haxe/remoting/Context.html" title="haxe.remoting.Context">Context</a></td><td><p>Allows communication between platforms. This is a shared API that can be called on the connection at the client code.</p></td></tr><tr class="class"><td width="200"><a href="../../haxe/remoting/ExternalConnection.html" title="haxe.remoting.ExternalConnection">ExternalConnection</a></td><td><p>Synchronous communications between Flash and Javascript.</p></td></tr><tr class="type"><td width="200"><a href="../../haxe/remoting/Socket.html" title="haxe.remoting.Socket">Socket</a></td><td><p></p></td></tr></tbody></table></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
45
hGameTest/node_modules/openfl/docs/pages/haxe/rtti/Abstractdef.html
generated
vendored
Normal file
45
hGameTest/node_modules/openfl/docs/pages/haxe/rtti/Abstractdef.html
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.rtti.Abstractdef - API Reference</title><meta name="description" content="The abstract type runtime information."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Abstractdef</h1><h4><small>package <a href="../../haxe/rtti/index.html">haxe.rtti</a></small></h4><p><h4><small>import <a href="../../haxe/rtti/CType.html">haxe.rtti.CType</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The abstract type runtime information.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/cr-rtti-structure.html#abstract-type-information">https://haxe.org/manual/cr-rtti-structure.html#abstract-type-information</a></p></div></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="athis"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#athis"><span class="identifier">athis</span></a>:<span class="type">CType</span></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="doc"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#doc"><span class="identifier">doc</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The documentation of the type. This information is only available
|
||||
if the compiler flag <code>-D use_rtti_doc</code> was in place. Otherwise, or if
|
||||
the constructor has no documentation, the value is <code>null</code>.</p></div></div><div class="field "><a name="file"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#file"><span class="identifier">file</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The full slash path of the .hx file containing the type.
|
||||
This might be <code>null</code> in case there is no such file, e.g. if the
|
||||
type is defined through a macro.</p></div></div><div class="field "><a name="from"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#from"><span class="identifier">from</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><{t:<span class="type">CType</span>, field:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>>}></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="impl"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#impl"><span class="identifier">impl</span></a>:<a class="type" title="The runtime class definition information." href="../../haxe/rtti/Classdef.html">Classdef</a></code></p></h3><div class="doc"><p></p></div></div><div class="field "><a name="isPrivate"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#isPrivate"><span class="identifier">isPrivate</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the type is <a href="https://haxe.org/manual/dictionary.html#define-private-type">private</a>.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="The list of runtime metadata." href="../../haxe/rtti/MetaData.html">MetaData</a></code></p></h3><div class="doc"><p>The <a href="https://haxe.org/manual/lf-metadata.html">metadata</a> the type was
|
||||
annotated with.</p></div></div><div class="field "><a name="module"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#module"><span class="identifier">module</span></a>:<a class="type" title="The (dot-)path of the runtime type." href="../../haxe/rtti/Path.html">Path</a></code></p></h3><div class="doc"><p>The type path of the module containing the type.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#params"><span class="identifier">params</span></a>:<a class="type" title="An array of strings representing the names of the type parameters the type has." href="../../haxe/rtti/TypeParams.html">TypeParams</a></code></p></h3><div class="doc"><p>An array of strings representing the names of the type parameters the
|
||||
type has.</p></div></div><div class="field "><a name="path"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#path"><span class="identifier">path</span></a>:<a class="type" title="The (dot-)path of the runtime type." href="../../haxe/rtti/Path.html">Path</a></code></p></h3><div class="doc"><p>The type path of the type.</p></div></div><div class="field "><a name="platforms"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#platforms"><span class="identifier">platforms</span></a>:<a class="type" title="A list of strings representing the targets where the type is available." href="../../haxe/rtti/Platforms.html">Platforms</a></code></p></h3><div class="doc"><p>A list of strings representing the targets where the type is available.</p></div></div><div class="field "><a name="to"></a><h3><p><code><a href="../../haxe/rtti/Abstractdef.html#to"><span class="identifier">to</span></a>:<a class="type" title="An Array is a storage for values." href="../../Array.html">Array</a><{t:<span class="type">CType</span>, field:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>>}></code></p></h3><div class="doc"><p></p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
47
hGameTest/node_modules/openfl/docs/pages/haxe/rtti/ClassField.html
generated
vendored
Normal file
47
hGameTest/node_modules/openfl/docs/pages/haxe/rtti/ClassField.html
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.rtti.ClassField - API Reference</title><meta name="description" content="The runtime class field information."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> ClassField</h1><h4><small>package <a href="../../haxe/rtti/index.html">haxe.rtti</a></small></h4><p><h4><small>import <a href="../../haxe/rtti/CType.html">haxe.rtti.CType</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The runtime class field information.</p><p class="javadoc">See:</p><div class="indent inline-content"><p><a href="https://haxe.org/manual/cr-rtti-structure.html#class-field-information">https://haxe.org/manual/cr-rtti-structure.html#class-field-information</a></p></div></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="doc"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#doc"><span class="identifier">doc</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The documentation of the field. This information is only available
|
||||
if the compiler flag <code>-D use_rtti_doc</code> was in place. Otherwise, or
|
||||
if the field has no documentation, the value is <code>null</code>.</p></div></div><div class="field "><a name="expr"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#expr"><span class="identifier">expr</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The actual expression of the field or <code>null</code> if there is no expression.</p></div></div><div class="field "><a name="get"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#get"><span class="identifier">get</span></a>:<span class="type">Rights</span></code></p></h3><div class="doc"><p>The <a href="https://haxe.org/manual/dictionary.html#define-read-access">read access</a>
|
||||
behavior of the field.</p></div></div><div class="field "><a name="isOverride"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#isOverride"><span class="identifier">isOverride</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the field overrides another field.</p></div></div><div class="field "><a name="isPublic"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#isPublic"><span class="identifier">isPublic</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the field is public.</p></div></div><div class="field "><a name="line"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#line"><span class="identifier">line</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The standard Int type." href="../../Int.html">Int</a>></code></p></h3><div class="doc"><p>The line number where the field is defined. This information is only
|
||||
available if the field has an expression.
|
||||
Otherwise the value is <code>null</code>.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="The list of runtime metadata." href="../../haxe/rtti/MetaData.html">MetaData</a></code></p></h3><div class="doc"><p>The meta data the field was annotated with.</p></div></div><div class="field "><a name="name"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#name"><span class="identifier">name</span></a>:<a class="type" title="The basic String class." href="../../String.html">String</a></code></p></h3><div class="doc"><p>The name of the field.</p></div></div><div class="field "><a name="overloads"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#overloads"><span class="identifier">overloads</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="A linked-list of elements." href="../../List.html">List</a><<a class="type" title="The runtime class field information." href="../../haxe/rtti/ClassField.html">ClassField</a>>></code></p></h3><div class="doc"><p>The list of available overloads for the fields or <code>null</code> if no overloads
|
||||
exists.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#params"><span class="identifier">params</span></a>:<a class="type" title="An array of strings representing the names of the type parameters the type has." href="../../haxe/rtti/TypeParams.html">TypeParams</a></code></p></h3><div class="doc"><p>An array of strings representing the names of the type parameters
|
||||
the field has.</p></div></div><div class="field "><a name="platforms"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#platforms"><span class="identifier">platforms</span></a>:<a class="type" title="A list of strings representing the targets where the type is available." href="../../haxe/rtti/Platforms.html">Platforms</a></code></p></h3><div class="doc"><p>A list of strings representing the targets where the field is available.</p></div></div><div class="field "><a name="set"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#set"><span class="identifier">set</span></a>:<span class="type">Rights</span></code></p></h3><div class="doc"><p>The <a href="https://haxe.org/manual/dictionary.html#define-write-access">write access</a>
|
||||
behavior of the field.</p></div></div><div class="field "><a name="type"></a><h3><p><code><a href="../../haxe/rtti/ClassField.html#type"><span class="identifier">type</span></a>:<span class="type">CType</span></code></p></h3><div class="doc"><p>The type of the field.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
48
hGameTest/node_modules/openfl/docs/pages/haxe/rtti/Classdef.html
generated
vendored
Normal file
48
hGameTest/node_modules/openfl/docs/pages/haxe/rtti/Classdef.html
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><!-- use theme color or fallback -->
|
||||
<!--use textcolor from settings, otherwise create a contrasting color to theme color-->
|
||||
<head><meta charset="utf-8"/><link href="../../bootstrap/css/bootstrap.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"/><link href="../../bootstrap/css/bootstrap-select.min.css" rel="stylesheet"/><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/><link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,600italic,400" rel="stylesheet" type="text/css"/><link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet" type="text/css"/><script src="../../jquery-1.9.1.min.js"></script><script src="../../bootstrap/js/bootstrap.min.js"></script><script src="../../bootstrap/js/bootstrap-select.min.js"></script><link href="../../styles.css" rel="stylesheet"/><link href="../../haxe-nav.css" rel="stylesheet"/><script type="text/javascript">var dox = {rootPath: "../../",platforms: ["Neko","Android","Flash","iOS","macOS","Linux","HTML5","Windows"]};</script><script type="text/javascript" src="../../nav.js"></script><script type="text/javascript" src="../../index.js"></script><link rel="icon" href="../../favicon.ico" type="image/x-icon"></link><title>haxe.rtti.Classdef - API Reference</title><meta name="description" content="The runtime class definition information."/></head><body><style>
|
||||
a, code .type {
|
||||
color: #24afc4;
|
||||
}
|
||||
.navbar .brand {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.nav-list>.active>a.treeLink, .nav-list>.active>a.treeLink:hover, .nav-list>.active>a.treeLink:focus {
|
||||
background: #24afc4;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.navbar .container {
|
||||
width: 940px ;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@media (max-width: 979px) and (min-width: 768px) {
|
||||
.navbar .container {
|
||||
width: 724px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container {
|
||||
width: 1170px;
|
||||
}
|
||||
}
|
||||
.navbar .container img {
|
||||
margin: 5px 0 0 4px;
|
||||
}
|
||||
</style><nav class="nav"><div class="navbar"><div class="navbar-inner" style="background:#FAFAFA; border-bottom:1px solid rgba(0,0,0,.09)"><div class="container"><a class="brand" href="http://www.openfl.org"><img alt="" src="http://www.openfl.org/images/logo.png"/></a><a class="brand" style="color:#777777" href="../../">API Reference</a></div></div></div></nav><div class="container main-content"><div class="row-fluid"><div class="span3"><div class="well sidebar-nav"><form class="form-search" id="searchForm"><div class="input-prepend input-block-level"><span class="add-on"><i class="icon-search"></i></span><input id="search" type="text" placeholder="Search" autocomplete="off"/></div></form><div class="dropdown"><select id="select-platform" class="selectpicker" title="Filter by platform" data-width="100%"><option value="all" selected="true">All Platforms</option><option>Neko</option><option>Android</option><option>Flash</option><option>iOS</option><option>macOS</option><option>Linux</option><option>HTML5</option><option>Windows</option></select></div></div><div class="well sidebar-nav"><div id="nav"></div></div></div><div class="span9"><div class="page-header"><h1><small>typedef</small> Classdef</h1><h4><small>package <a href="../../haxe/rtti/index.html">haxe.rtti</a></small></h4><p><h4><small>import <a href="../../haxe/rtti/CType.html">haxe.rtti.CType</a></small></h4></p><p class="availability"><hr/><em>Available on all platforms</em></p></div><div class="body"><div class="doc doc-main"><div class="indent"><p>The runtime class definition information.</p></div></div><h3 class="section">Properties</h3><div class="fields"><div class="field "><a name="doc"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#doc"><span class="identifier">doc</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The documentation of the type. This information is only available
|
||||
if the compiler flag <code>-D use_rtti_doc</code> was in place. Otherwise, or if
|
||||
the constructor has no documentation, the value is <code>null</code>.</p></div></div><div class="field "><a name="fields"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#fields"><span class="identifier">fields</span></a>:<a class="type" title="A linked-list of elements." href="../../List.html">List</a><<a class="type" title="The runtime class field information." href="../../haxe/rtti/ClassField.html">ClassField</a>></code></p></h3><div class="doc"><p>The list of member <a href="https://haxe.org/manual/class-field.html">class fields</a>.</p></div></div><div class="field "><a name="file"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#file"><span class="identifier">file</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The basic String class." href="../../String.html">String</a>></code></p></h3><div class="doc"><p>The full slash path of the .hx file containing the type.
|
||||
This might be <code>null</code> in case there is no such file, e.g. if the
|
||||
type is defined through a macro.</p></div></div><div class="field "><a name="interfaces"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#interfaces"><span class="identifier">interfaces</span></a>:<a class="type" title="A linked-list of elements." href="../../List.html">List</a><<a class="type" title="The type parameters in the runtime type information." href="../../haxe/rtti/PathParams.html">PathParams</a>></code></p></h3><div class="doc"><p>The list of interfaces defined by their type path and list of type
|
||||
parameters.</p></div></div><div class="field "><a name="isExtern"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#isExtern"><span class="identifier">isExtern</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the class is <a href="https://haxe.org/manual/lf-externs.html">extern</a>.</p></div></div><div class="field "><a name="isInterface"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#isInterface"><span class="identifier">isInterface</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the class is actually an <a href="https://haxe.org/manual/types-interfaces.html">interface</a>.</p></div></div><div class="field "><a name="isPrivate"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#isPrivate"><span class="identifier">isPrivate</span></a>:<a class="type" title="The standard Boolean type, which can either be true or false." href="../../Bool.html">Bool</a></code></p></h3><div class="doc"><p>Whether or not the type is <a href="https://haxe.org/manual/dictionary.html#define-private-type">private</a>.</p></div></div><div class="field "><a name="meta"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#meta"><span class="identifier">meta</span></a>:<a class="type" title="The list of runtime metadata." href="../../haxe/rtti/MetaData.html">MetaData</a></code></p></h3><div class="doc"><p>The <a href="https://haxe.org/manual/lf-metadata.html">metadata</a> the type was
|
||||
annotated with.</p></div></div><div class="field "><a name="module"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#module"><span class="identifier">module</span></a>:<a class="type" title="The (dot-)path of the runtime type." href="../../haxe/rtti/Path.html">Path</a></code></p></h3><div class="doc"><p>The type path of the module containing the type.</p></div></div><div class="field "><a name="params"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#params"><span class="identifier">params</span></a>:<a class="type" title="An array of strings representing the names of the type parameters the type has." href="../../haxe/rtti/TypeParams.html">TypeParams</a></code></p></h3><div class="doc"><p>An array of strings representing the names of the type parameters the
|
||||
type has.</p></div></div><div class="field "><a name="path"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#path"><span class="identifier">path</span></a>:<a class="type" title="The (dot-)path of the runtime type." href="../../haxe/rtti/Path.html">Path</a></code></p></h3><div class="doc"><p>The type path of the type.</p></div></div><div class="field "><a name="platforms"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#platforms"><span class="identifier">platforms</span></a>:<a class="type" title="A list of strings representing the targets where the type is available." href="../../haxe/rtti/Platforms.html">Platforms</a></code></p></h3><div class="doc"><p>A list of strings representing the targets where the type is available.</p></div></div><div class="field "><a name="statics"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#statics"><span class="identifier">statics</span></a>:<a class="type" title="A linked-list of elements." href="../../List.html">List</a><<a class="type" title="The runtime class field information." href="../../haxe/rtti/ClassField.html">ClassField</a>></code></p></h3><div class="doc"><p>The list of static class fields.</p></div></div><div class="field "><a name="superClass"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#superClass"><span class="identifier">superClass</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<a class="type" title="The type parameters in the runtime type information." href="../../haxe/rtti/PathParams.html">PathParams</a>></code></p></h3><div class="doc"><p>The class' parent class defined by its type path and list of type
|
||||
parameters.</p></div></div><div class="field "><a name="tdynamic"></a><h3><p><code><a href="../../haxe/rtti/Classdef.html#tdynamic"><span class="identifier">tdynamic</span></a>:<a class="type" title="Null can be useful in two cases." href="../../Null.html">Null</a><<span class="type">CType</span>></code></p></h3><div class="doc"><p>The type which is dynamically implemented by the class or <code>null</code> if no
|
||||
such type exists.</p></div></div></div></div></div></div></div><footer class="section site-footer" style="background:#FAFAFA"><div class="container"><div class="copyright"><p style="color:#777777">© 2017 <a style="color:#777777" href="http://www.openfl.org">http://www.openfl.org</a></p></div></div></footer><script src="../..//highlighter.js"></script><link href="../../highlighter.css" rel="stylesheet"/></body></html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user