暂无描述

Simon Krajewski a5db8fa477 [inliner] remove bogus upcast detection (closes #3486) 10 年之前
extra ec3e5d2246 updated to latest 10 年之前
libs @ 78d0798344 e7dcf40841 [java/cs] Fixed some @:overload overrides that weren't validated by typeload 11 年之前
std 4c9febead5 remove obsolete special cases for type parameters of `@:to/@:from` (closes #3494) 10 年之前
tests a5db8fa477 [inliner] remove bogus upcast detection (closes #3486) 10 年之前
.gitattributes 8e32d7f112 LF normalization 12 年之前
.gitignore 16f52f7312 remove and ignore some neko bin 10 年之前
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 年之前
.travis.yml 33b6cda9f6 [TravisCI] install camlp4 on OSX because it is no longer part of ocaml (4.02) 10 年之前
Makefile f301baef6a add static analyzer 11 年之前
Makefile.win 4f0dbd1154 fixed wodi lib path 11 年之前
README.md f06c06f842 :sparkles: badges :sparkles: 11 年之前
analyzer.ml 2214ba837c [analzyer] remove unused capture var 10 年之前
appveyor.yml 40ef585cdb [CI] refactor ci code 11 年之前
ast.ml 5e89596bc9 mark methods which really have no expressions and error on recursive abstract operator/array access calls (see #3376) (see #3636) 10 年之前
codegen.ml 4bbaf83e47 maintain position of capture variables when transforming to typed AST (closes #3675) 10 年之前
common.ml 5e89596bc9 mark methods which really have no expressions and error on recursive abstract operator/array access calls (see #3376) (see #3636) 10 年之前
dce.ml e0eddca8ec [dce] do not keep a class if only its extern fields are kept (closes #3546) 10 年之前
filters.ml 97fcdb9566 Allow NoSimplify to disable the simplify filter 10 年之前
genas3.ml 7ed0b55831 [as3] override `follow` with `follow_with_abstracts` (see #2224) 11 年之前
gencommon.ml b91916059d [java/cs] If nativeGen, guarantee that init expressions are called before super. Closes #3661 10 年之前
gencpp.ml e237ae6225 [cpp] do not omit generation for KGeneric classes by default (see #2016) 10 年之前
gencs.ml 3573c9b3ff [cs] don't try to clean output directory when -D unity-std-target for now 10 年之前
genjava.ml 303a937651 [cs/java] clean output directory of old files 10 年之前
genjs.ml 594630e62d [js] handle @:selfCall in gen_expr TField case instead of gen_call (see https://github.com/HaxeFoundation/haxe/issues/3441#issuecomment-64015831) 10 年之前
genneko.ml fec0522fd6 added support for runtime loading of NDLL within local haxelib repository 10 年之前
genphp.ml 534fd95ef8 [php] we now have real empty blocks, so generate them (see 42be1b96bf7353e3194dc065cd1361a31ee4bdb1) 11 年之前
genpy.ml a3d3d61422 [js/python] don't generate require/import for types that are not directly referenced by non-extern code (closes #3050) 11 年之前
genswf.ml 53f0a0c259 rename `(cl|en|t|a|mt)_types` to `_params` for consistency 11 年之前
genswf8.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 年之前
genswf9.ml 506f85afc2 fixed slots handling with enums : was causing crashes with iOS AOT 11 年之前
genxml.ml ce8f380722 Merge pull request #3341 from Simn/abstract_cast_rewrite 11 年之前
haxe.hxproj 35963f675f hide analyzer outputs 11 年之前
interp.ml 6631a6be8f Merge branch 'add_global_metadata' into development 11 年之前
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 年之前
main.ml 366cba08bf oops 10 年之前
matcher.ml 7d195a4183 [matcher] fix exhaustiveness check for CompileTimeFinite types when there's no default case (closes #3665) 10 年之前
optimizer.ml a5db8fa477 [inliner] remove bogus upcast detection (closes #3486) 10 年之前
parser.ml 3a938dab8e allow `import Type as Alias` in the name of the grammar (closes #2361) 11 年之前
type.ml 08a4aba1dd add EqDoNotFollowNull and `can_follow` to `type_eq` 10 年之前
typecore.ml 9713f35f16 add Compiler.addGlobalMetadata 11 年之前
typeload.ml 4c9febead5 remove obsolete special cases for type parameters of `@:to/@:from` (closes #3494) 10 年之前
typer.ml 5446d7ff25 [typer] delay abstract instance error until after static extensions have been checked (closes #3679) 10 年之前

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