説明なし

Simon Krajewski 9a11c57c62 only generate null checks in pattern matching when we do not need a value or there is an else case (closes #3061) 10 年 前
extra e02ace1f6d It's 2015 now 10 年 前
libs @ ac17a9c7f1 f991f18721 sync libs 10 年 前
std 30d319e394 added Telemetry (close #2535) 10 年 前
tests 9a11c57c62 only generate null checks in pattern matching when we do not need a value or there is an else case (closes #3061) 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 fc12e68086 [analyzer] split up `return Void` which might be introduced by various typer parts 10 年 前
appveyor.yml 40ef585cdb [CI] refactor ci code 11 年 前
ast.ml c40bb588a3 rename @:reallyUsed to @:directlyUsed 10 年 前
codegen.ml e01fbc4ec0 allow retry of build of child class when parent not ready (close #2117) 10 年 前
common.ml ac002c6f7f [js/python] always generate requires/imports in dce=no, as we can't know if the type is used directly or not without DCE (closes #3873) 10 年 前
dce.ml afe2d0bf5a store features in modules, then commit them to common context before generation (see #3787) 10 年 前
filters.ml afe2d0bf5a store features in modules, then commit them to common context before generation (see #3787) 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 7ea3f84734 Add code code super-interface casting too 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 ac002c6f7f [js/python] always generate requires/imports in dce=no, as we can't know if the type is used directly or not without DCE (closes #3873) 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 ac002c6f7f [js/python] always generate requires/imports in dce=no, as we can't know if the type is used directly or not without DCE (closes #3873) 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 37285ba42d fixed bug in macro context cache reuse (had wrong ctx) (close #2566) 10 年 前
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 年 前
main.ml 47107e0530 added compilation server log for reasons why modules are not reused (including macro-in-macro) 10 年 前
matcher.ml 9a11c57c62 only generate null checks in pattern matching when we do not need a value or there is an else case (closes #3061) 10 年 前
optimizer.ml 483cb0a4ff avoid replacing local function args when outside of it in optimize_completion (close #2542) 10 年 前
parser.ml c51a36352b list sub types in import completion 10 年 前
type.ml afe2d0bf5a store features in modules, then commit them to common context before generation (see #3787) 10 年 前
typecore.ml 39d918246d minor changes in pass debugging 10 年 前
typeload.ml 6d93c97d72 rename `m_features` to `m_if_feature` 10 年 前
typer.ml 37285ba42d fixed bug in macro context cache reuse (had wrong ctx) (close #2566) 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