Nav apraksta

杨博 10cfd1723f Add PositionTools.hx 11 gadi atpakaļ
extra 85c80a18d2 allow ComplexType return from @:genericBuild macros, deprecate Type return (closes #3176) 11 gadi atpakaļ
libs @ 0da911f4d0 555f8abbf9 libs update 11 gadi atpakaļ
std 10cfd1723f Add PositionTools.hx 11 gadi atpakaļ
tests d92393f42f [TravisCI] flex sdk 4.12.0 -> 4.12.1 11 gadi atpakaļ
.gitattributes 8e32d7f112 LF normalization 12 gadi atpakaļ
.gitignore 33cdf17c39 [python] add tests for @:import 11 gadi atpakaļ
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 gadi atpakaļ
.travis.yml 14fbf46953 [TravisCI] disabled fast_finish 11 gadi atpakaļ
Makefile 68d9ee1d1d fix Makefile for usage with Makefile.win + FILTER (CC_CMD is the full command + args) 11 gadi atpakaļ
Makefile.win bc8b2e7315 remove 2>/dev/null from makefile kill (does not work for me) 11 gadi atpakaļ
README.md 1d880435c7 [docs] Update README.md 11 gadi atpakaļ
ast.ml 33e66c1e17 Merge remote-tracking branch 'remotes/upstream/development' into bridgeProperties 11 gadi atpakaļ
codegen.ml 419e84c57e recurse upon finding a generic type parameter replacement because it could itself be a generic (closes #3107) 11 gadi atpakaļ
common.ml 33e66c1e17 Merge remote-tracking branch 'remotes/upstream/development' into bridgeProperties 11 gadi atpakaļ
dce.ml 858f28ea05 [js] disallow types that "contain" Class<T> as Map key (see #2479) 11 gadi atpakaļ
filters.ml be8c787ed5 add verify_ast to check for abstracts being used as value (closes #3059) 11 gadi atpakaļ
genas3.ml 313776c43a (As3) respect __arguments__ 11 gadi atpakaļ
gencommon.ml 71a9761c1a [java/cs] TVar is not typed as Void: Make a special case for it. Closes #3185 11 gadi atpakaļ
gencpp.ml ed4309c117 [cpp] record function types for return casting 11 gadi atpakaļ
gencs.ml 93ff68c18f [cs] get_Item and set_Item support 11 gadi atpakaļ
genjava.ml a2f9d7a838 [java] correctly set callstack 11 gadi atpakaļ
genjs.ml bcdc1f9046 use dot path instead of flattened path for `@:expose` (closes #3142) 11 gadi atpakaļ
genneko.ml 864c55ca39 add Common.mkdir_from_path and use it to generate neko output directory 11 gadi atpakaļ
genphp.ml 4e9a3820cb (Php) unset loop variable of TFor to avoid reference passing issues (closes #2900) 11 gadi atpakaļ
genpy.ml 12d963e861 support Array @:runtime fields at runtime (closes #3071) 11 gadi atpakaļ
genswf.ml 0a745131d1 add -D swf_use_doabc 11 gadi atpakaļ
genswf8.ml 9383e61d2e (Flash8) fix TEnumParameter (closes #2728) 11 gadi atpakaļ
genswf9.ml 578ae8f016 override follow in genswf to deal with TAbstract (closes #3178) 11 gadi atpakaļ
genxml.ml 77f375ae43 [hxclasses] Use the real path (before @:native()) to generate the hx-externs 11 gadi atpakaļ
haxe.hxproj fcc3ee54dd flash12 API sync 11 gadi atpakaļ
interp.ml 83beb94577 add Context.get_constructor_arguments for use in @:genericBuild macros 11 gadi atpakaļ
lexer.mll 8511640037 add @:bridgeProperties, which creates native property bridges for all haxe properties in the annotated class 11 gadi atpakaļ
main.ml 9cc9df1467 Fixed closing XML tag for package names in TopLevel completion mode 11 gadi atpakaļ
matcher.ml 18a19b8596 catch empty sub-term list when pattern matching (closes #3150) 11 gadi atpakaļ
optimizer.ml e521c6cc86 detect out-of-bounds array access and cancel inlining (closes #2999) 11 gadi atpakaļ
parser.ml 33e66c1e17 Merge remote-tracking branch 'remotes/upstream/development' into bridgeProperties 11 gadi atpakaļ
type.ml 11d90f0227 use abstract itself instead of underlying type to check variance (closes #3110) 11 gadi atpakaļ
typecore.ml 83beb94577 add Context.get_constructor_arguments for use in @:genericBuild macros 11 gadi atpakaļ
typeload.ml 06fe066594 allow duplicate fields when structurally extending if the types are equal (closes #3081) 11 gadi atpakaļ
typer.ml 0625d1e2c1 disable deprecation warning upon returning Type from `@:genericBuild` macro 11 gadi atpakaļ

README.md

Haxe logo

Haxe - The Cross-Platform Toolkit

Build 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