Brak opisu

Dan Korostelev f045215fbf [cs] generate "where" clauses for type constraints for @:nativeGen classes (closes #3526) 10 lat temu
extra c2c088aeda CHANGES.txt update 10 lat temu
libs @ 78d0798344 e7dcf40841 [java/cs] Fixed some @:overload overrides that weren't validated by typeload 11 lat temu
std f58b0b810f type hint `prev` var to avoid FAnon access (closes #3794) 10 lat temu
tests f39b81ed84 SHA224 implementation and unit tests 10 lat temu
.gitattributes 8e32d7f112 LF normalization 12 lat temu
.gitignore 80542dfc34 [SauceLabs] Parameterized the config. 10 lat temu
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 lat temu
.travis.yml 33b6cda9f6 [TravisCI] install camlp4 on OSX because it is no longer part of ocaml (4.02) 10 lat temu
Makefile 44ed4e425a [makefile] fix typo 10 lat temu
Makefile.win 4f0dbd1154 fixed wodi lib path 11 lat temu
README.md a8f0a9bb81 Update README.md 10 lat temu
analyzer.ml 0a9ca00734 [analyzer] respect C#s ref types in local DCE 10 lat temu
appveyor.yml 40ef585cdb [CI] refactor ci code 11 lat temu
ast.ml 7aec33f78e implement resolve on abstracts but comment it out (see #3753) 10 lat temu
codegen.ml 7b653f5790 [all] Merged Simn's fix to #3090 and fixed C#'s issue with it. Closes #3090 10 lat temu
common.ml fa4e0af33d add `-D loop_unroll_max_cost=int` flag and cancel loop unrolling at 250 by default 10 lat temu
dce.ml f9fcd72f32 [dce] run accessor fix even in no-dce mode (closes #3756) 10 lat temu
filters.ml f9fcd72f32 [dce] run accessor fix even in no-dce mode (closes #3756) 10 lat temu
genas3.ml 5068cea7cf [as3] a_impl = Some _ doesn't imply non-@:coreType. Fix bug introduced by UInt changes 10 lat temu
gencommon.ml de544d91d2 [cs/java] generate enumValue.index for Type.enumIndex for enums that are known to be converted to class 10 lat temu
gencpp.ml 6975ff6a27 Prepare haxe_api_level 313 for nativeProperties 10 lat temu
gencs.ml f045215fbf [cs] generate "where" clauses for type constraints for @:nativeGen classes (closes #3526) 10 lat temu
genjava.ml 0d10f21a8a [java/cs] Add --feature-level command-line option. Requires the latest hxjava/hxcs 10 lat temu
genjs.ml 626578cbfe [JS] When not `-D js-classic`, pass `console` as an argument to the big closure. 10 lat temu
genneko.ml fec0522fd6 added support for runtime loading of NDLL within local haxelib repository 10 lat temu
genphp.ml c5a7c15232 [php] handle string comparison using strcmp to avoid crazy conversions 10 lat temu
genpy.ml f996b26c63 store type parameters in FClosure too 10 lat temu
genswf.ml 53f0a0c259 rename `(cl|en|t|a|mt)_types` to `_params` for consistency 11 lat temu
genswf8.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 lat temu
genswf9.ml e4a1fb51e8 X \o/ M \o/ L 10 lat temu
genxml.ml 0aca8332e1 fixes 10 lat temu
haxe.hxproj 35963f675f hide analyzer outputs 11 lat temu
interp.ml 87a589bcc3 [java/cs] Renamed -javac-arg / -csc-arg to -c-arg. Closes #3768 10 lat temu
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 lat temu
main.ml 0e9d13b79e run onAfterGenerate filters even in --no-output mode 10 lat temu
matcher.ml 55c52cfc69 [matcher] fix handling of CFields (closes #3680) 10 lat temu
optimizer.ml 409140003d disable for folding for now (see #3792) 10 lat temu
parser.ml 740b2ed187 [parser] allow `try` without `catch` again and wave it trough in the typer 10 lat temu
type.ml 8de2f6d98a print the types of Then and Else as well 10 lat temu
typecore.ml 9713f35f16 add Compiler.addGlobalMetadata 11 lat temu
typeload.ml 8d1cc78651 use TLazy for delayed abstract relation checks so we can be sure invalid ones are detected before they crash the compiler this is a long commit message (closes #3782) 10 lat temu
typer.ml f87cfb0574 move `type_of_module_type` to type.ml because it is very useful 10 lat temu

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