暂无描述

frabbit 025b1091e3 Merge pull request #3876 from HaxeFoundation/python-naming 10 年之前
extra e02ace1f6d It's 2015 now 10 年之前
libs @ ac17a9c7f1 f991f18721 sync libs 10 年之前
std 2a3b66e186 [python] rename modules, follow same convention than nodejs target for module -> class mapping 10 年之前
tests 2a3b66e186 [python] rename modules, follow same convention than nodejs target for module -> class mapping 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 0222951a15 added stubs linking 10 年之前
Makefile.win 0222951a15 added stubs linking 10 年之前
README.md a8f0a9bb81 Update README.md 10 年之前
analyzer.ml 278421620b [analyzer] detect more `need_val` places 10 年之前
appveyor.yml 40ef585cdb [CI] refactor ci code 11 年之前
ast.ml f744218240 mark current field with `@:has_untyped` and ignore it in the analyzer (closes #3845) 10 年之前
codegen.ml 7b653f5790 [all] Merged Simn's fix to #3090 and fixed C#'s issue with it. Closes #3090 10 年之前
common.ml f744218240 mark current field with `@:has_untyped` and ignore it in the analyzer (closes #3845) 10 年之前
dce.ml f9fcd72f32 [dce] run accessor fix even in no-dce mode (closes #3756) 10 年之前
filters.ml 1da240c31a [cs/java] generate single-element array for unitialized captured vars without using TNull so filters are not confused. 10 年之前
genas3.ml 5068cea7cf [as3] a_impl = Some _ doesn't imply non-@:coreType. Fix bug introduced by UInt changes 10 年之前
gencommon.ml c4f50f181a [cs] Cast the right-side of shift expressions to Int 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 9857b43348 use process api for macros 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 25bf7d970d make sure to build type params constraints when we build the class (close #3789) 10 年之前
typer.ml f1bf5164c1 do not swap `@:commutative` ops if the arguments have no side-effects so we can optimize (closes #3869) 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