Bez popisu

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

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