No Description

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

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