Sin descripción

Cauê Waneck d88b79b448 [cs] First implementation of sys.db using ADO.NET hace 11 años
extra 92656eb035 update haxelib hace 11 años
libs @ 78d0798344 e7dcf40841 [java/cs] Fixed some @:overload overrides that weren't validated by typeload hace 11 años
std d88b79b448 [cs] First implementation of sys.db using ADO.NET hace 11 años
tests d88b79b448 [cs] First implementation of sys.db using ADO.NET hace 11 años
.gitattributes 8e32d7f112 LF normalization hace 12 años
.gitignore 4f5d4a230d restructure unit tests: sources in src, output in bin hace 11 años
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) hace 11 años
.travis.yml 40ef585cdb [CI] refactor ci code hace 11 años
Makefile f301baef6a add static analyzer hace 11 años
Makefile.win 4f0dbd1154 fixed wodi lib path hace 11 años
README.md f06c06f842 :sparkles: badges :sparkles: hace 11 años
analyzer.ml 3aa487059c Add a define to disable simplification filter. Some special output handling when cppia is defined hace 11 años
appveyor.yml 40ef585cdb [CI] refactor ci code hace 11 años
ast.ml 70a59051ef mark types that are directly referenced by non-extern code with @:reallyUsed (see #3050) hace 11 años
codegen.ml 0979a9a16c make sure the raising version of `cast_or_unify` is used when trying to find array access (closes #3432) hace 11 años
common.ml 3aa487059c Add a define to disable simplification filter. Some special output handling when cppia is defined hace 11 años
dce.ml 70a59051ef mark types that are directly referenced by non-extern code with @:reallyUsed (see #3050) hace 11 años
filters.ml b3deea245b [java] use native arrays for wrapped captured variables hace 11 años
genas3.ml 7ed0b55831 [as3] override `follow` with `follow_with_abstracts` (see #2224) hace 11 años
gencommon.ml 1278ade6fb remove duplicated code hace 11 años
gencpp.ml eff03d9f49 Include headers required by switches on generic EnumValue. hace 11 años
gencs.ml ef309860d0 [cs] Write type parameters in the correct classes: Closes #3224 hace 11 años
genjava.ml ef5f4b4562 [java/cs] Added support for @:readOnly fields when eagerly initialized. Closes #2061 hace 11 años
genjs.ml 964c344784 [js] generate array literal for "new Array<T>()" expressions as it still seems to be the fastest way (see http://stackoverflow.com/questions/7375120/why-is-arr-faster-than-arr-new-array) hace 11 años
genneko.ml cbdafc5aba [neko] use `tf_args` instead of TFun to determine constructor argument names (closes #3008) hace 11 años
genphp.ml 534fd95ef8 [php] we now have real empty blocks, so generate them (see 42be1b96bf7353e3194dc065cd1361a31ee4bdb1) hace 11 años
genpy.ml a3d3d61422 [js/python] don't generate require/import for types that are not directly referenced by non-extern code (closes #3050) hace 11 años
genswf.ml 53f0a0c259 rename `(cl|en|t|a|mt)_types` to `_params` for consistency hace 11 años
genswf8.ml 6568450332 remove TPatMatch (will revisit in the undefined future) hace 11 años
genswf9.ml 506f85afc2 fixed slots handling with enums : was causing crashes with iOS AOT hace 11 años
genxml.ml ce8f380722 Merge pull request #3341 from Simn/abstract_cast_rewrite hace 11 años
haxe.hxproj 35963f675f hide analyzer outputs hace 11 años
interp.ml 6631a6be8f Merge branch 'add_global_metadata' into development hace 11 años
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) hace 11 años
main.ml 3aa487059c Add a define to disable simplification filter. Some special output handling when cppia is defined hace 11 años
matcher.ml 8420693ae2 move `is_explicit_null` to type.ml because it is needed in the analyzer hace 11 años
optimizer.ml 01b6d6a573 Fix typo in error message hace 11 años
parser.ml 3a938dab8e allow `import Type as Alias` in the name of the grammar (closes #2361) hace 11 años
type.ml b1e92a6c5c [cs] Added support for accessing a Pointer's underlying type's fields hace 11 años
typecore.ml 9713f35f16 add Compiler.addGlobalMetadata hace 11 años
typeload.ml c099f456c3 [cs] Do not check explicit interfaces, but still include them in the list of interfaces. See #3558 hace 11 años
typer.ml aebb87551d separate variable assignments from read usage hace 11 años

README.md

Haxe logo

Haxe - The Cross-Platform Toolkit

TravisCI Build Status AppVeyor Build Status SauceLabs Test Status

Haxe is an open source toolkit that allows you to easily build cross-platform tools and applications that target many mainstream platforms. The Haxe toolkit includes:

  • The Haxe programming language, a modern, high-level, strictly-typed programming language
  • The Haxe cross-compiler, a state-of-the-art, lightning-speed compiler for many targets
  • The Haxe standard library, a complete, cross-platform library of common functionality

Haxe allows you to compile for the following targets:

  • C++
  • C#
  • Flash
  • Java
  • JavaScript
  • NekoVM
  • PHP

You can try Haxe directly from your browser at try.haxe.org!

For more information about Haxe, head to the offical Haxe website.

License

The Haxe project has several licenses, covering different parts of the projects.

  • The Haxe compiler is released under the GNU General Public License version 2 or any later version.
  • The Haxe libraries are released under a "two-clause" BSD license.
  • The Neko runtime is licensed under the GNU Lesser General Public License version 2.1 or any later version.

For the complete Haxe licenses, please see http://haxe.org/foundation/open-source.html or extra/LICENSE.txt.

Installing Haxe

The latest stable release is Haxe v3.1.3. Pre-built binaries are available for your platform:

Automated development builds are available from build.haxe.org.

Building from source

  1. Clone the repository using git. Be sure to initialize and fetch the submodules.

    git clone --recursive git://github.com/HaxeFoundation/haxe.git
    cd haxe
    
  2. Follow the documentation on building Haxe for your platform.

Using Haxe

For information on on using Haxe, consult the Haxe documentation:

  • Haxe Introduction, an introduction to the Haxe toolkit
  • The Haxe Manual, the reference manual for the Haxe language
  • Haxe API, documentation for the Haxe standard and native APIs
  • Haxelib, a repository of Haxe libraries for a variety of needs

Community

You can get help and talk with fellow Haxers from around the world via:

Version compatibility

Haxe neko
2.* 1.*
3.0.0 2.0.0
3.1.3 2.0.0