暂无描述

Dan Korostelev 1f5d9917a2 some UInt love (fix commutativity, use only Int as right-side for shifts) closes #3852 10 年之前
extra c2c088aeda CHANGES.txt update 10 年之前
libs @ 4a691aa8c3 63a98e2807 [ilib] Update to latest ocamllibs. Closes #3847 10 年之前
std 1f5d9917a2 some UInt love (fix commutativity, use only Int as right-side for shifts) closes #3852 10 年之前
tests 1f5d9917a2 some UInt love (fix commutativity, use only Int as right-side for shifts) closes #3852 10 年之前
.gitattributes 8e32d7f112 LF normalization 12 年之前
.gitignore 80542dfc34 [SauceLabs] Parameterized the config. 10 年之前
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 年之前
.travis.yml c6d856cb8e [TravisCI] minor 10 年之前
Makefile 1d0853d972 [cs] Add ilib's correct dependencies to the Makefile 10 年之前
Makefile.win 4f0dbd1154 fixed wodi lib path 11 年之前
README.md a8f0a9bb81 Update README.md 10 年之前
analyzer.ml 1cc8b3599e [as3] do not run local DCE for now 10 年之前
appveyor.yml 40ef585cdb [CI] refactor ci code 11 年之前
ast.ml 7aec33f78e implement resolve on abstracts but comment it out (see #3753) 10 年之前
codegen.ml 7b653f5790 [all] Merged Simn's fix to #3090 and fixed C#'s issue with it. Closes #3090 10 年之前
common.ml fa4e0af33d add `-D loop_unroll_max_cost=int` flag and cancel loop unrolling at 250 by default 10 年之前
dce.ml f9fcd72f32 [dce] run accessor fix even in no-dce mode (closes #3756) 10 年之前
filters.ml 933778e137 do not use `gen_local` to generate temp variables in the analyzer because it's extremely slow 10 年之前
genas3.ml 5068cea7cf [as3] a_impl = Some _ doesn't imply non-@:coreType. Fix bug introduced by UInt changes 10 年之前
gencommon.ml 216083e663 [java/cs] Properly recurse when Type.enumIndex optimization does not 10 年之前
gencpp.ml 44e5ea5096 remove some outdated type patterns from pre-abstract era (and hope it won't break for some mysterious reason) 10 年之前
gencs.ml dbb9d02fd0 [cs] Apply escaping only after backtick types are changed 10 年之前
genjava.ml 75653b97c9 [java] Properly list available java classes; Closes #3100 10 年之前
genjs.ml 626578cbfe [JS] When not `-D js-classic`, pass `console` as an argument to the big closure. 10 年之前
genneko.ml fec0522fd6 added support for runtime loading of NDLL within local haxelib repository 10 年之前
genphp.ml 44e5ea5096 remove some outdated type patterns from pre-abstract era (and hope it won't break for some mysterious reason) 10 年之前
genpy.ml f996b26c63 store type parameters in FClosure too 10 年之前
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 44e5ea5096 remove some outdated type patterns from pre-abstract era (and hope it won't break for some mysterious reason) 10 年之前
genxml.ml 0aca8332e1 fixes 10 年之前
haxe.hxproj 35963f675f hide analyzer outputs 11 年之前
interp.ml 2dfa148e77 [macro] make Context.getType return `null` for unknown types because that's how it's documented 10 年之前
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 年之前
main.ml 8554516344 [java] Don't force load all std lib on gen-hx-classes 10 年之前
matcher.ml 55c52cfc69 [matcher] fix handling of CFields (closes #3680) 10 年之前
optimizer.ml 409140003d disable for folding for now (see #3792) 10 年之前
parser.ml 8970fea667 fix cast + parenthesis parsing (closes #3806) 10 年之前
type.ml 8de2f6d98a print the types of Then and Else as well 10 年之前
typecore.ml eaa62aab92 rename `Context.getConstructorArguments` to `getCallArguments` (closes #3833) 10 年之前
typeload.ml 48e2a29bf8 [net-lib] Do not check property access on -net-lib extern classes. Closes #3474 10 年之前
typer.ml a40e6247f4 _actually_ still allow break/continue in inline closures 10 年之前

README.md

Haxe logo - The Cross-Platform Toolkit

TravisCI Build Status AppVeyor Build Status SauceLabs Test Status Gitter

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