Açıklama Yok

Simon Krajewski 1142dbcf5e fix haxe.PosInfos regression (closes #3348) 11 yıl önce
extra 9616b93e39 cleanup 11 yıl önce
libs @ 99fff32091 1cd97a3fa4 [cs] Started to work on being culture invariant. Started to tackle Issue #996; Transformed Runtime.compare to haxe code. Fixed enum to int on native C# enums. Closes #2931 11 yıl önce
std ee780ee4fa Merge pull request #3337 from andyli/maps 11 yıl önce
tests 1142dbcf5e fix haxe.PosInfos regression (closes #3348) 11 yıl önce
.gitattributes 8e32d7f112 LF normalization 12 yıl önce
.gitignore 9aea1e0c44 [tests] Starting to test Mysql and Sqlite SPOD on Travis 11 yıl önce
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 yıl önce
.travis.yml 71bc2c8608 stop wasting travis time on flash8 11 yıl önce
Makefile c131876ced [cs] minor - Added gencs dependency to interp 11 yıl önce
Makefile.win bc8b2e7315 remove 2>/dev/null from makefile kill (does not work for me) 11 yıl önce
README.md 1d880435c7 [docs] Update README.md 11 yıl önce
ast.ml 3bb889d9c9 [java] Added JavaCanonical metadata to store the actual inner class information; Closes #3221 11 yıl önce
codegen.ml 9616b93e39 cleanup 11 yıl önce
common.ml 529367d8c2 "I'm a target too!" little genpy said. (closes #3320) 11 yıl önce
dce.ml 2bb26a1852 add type parameters to FInstance 11 yıl önce
filters.ml d8c1dac660 [js] look ahead for conflicting var names in blocks because that's how scoping works there (closes #3344) 11 yıl önce
genas3.ml 26ee0c58f9 [as3] generate variable field access on interfaces as `class["field"]` (see #3159) 11 yıl önce
gencommon.ml 9cd3734ae6 split casts with fields to `a_from_field`/`a_to_field` 11 yıl önce
gencpp.ml 7533b85e98 add `interpolate_code` and enable it for `__js__` (see #3226) 11 yıl önce
gencs.ml c57536a0e5 resolve field access on type parameters that are constrained to abstracts (see #2343) 11 yıl önce
genjava.ml c57536a0e5 resolve field access on type parameters that are constrained to abstracts (see #2343) 11 yıl önce
genjs.ml 7533b85e98 add `interpolate_code` and enable it for `__js__` (see #3226) 11 yıl önce
genneko.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 yıl önce
genphp.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 yıl önce
genpy.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 yıl önce
genswf.ml 53f0a0c259 rename `(cl|en|t|a|mt)_types` to `_params` for consistency 11 yıl önce
genswf8.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 yıl önce
genswf9.ml f399394472 [swf] do not generate dynamic method fields in interfaces (see #3159) 11 yıl önce
genxml.ml ce8f380722 Merge pull request #3341 from Simn/abstract_cast_rewrite 11 yıl önce
haxe.hxproj fcc3ee54dd flash12 API sync 11 yıl önce
interp.ml fe2244ad6e use `unify_or_cast` for Context.unify to retain old behavior (see #3346) (test follows) 11 yıl önce
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 yıl önce
main.ml 304f6d2a1e reset use_parser_resume to true for normal completion every time (closes #3324) 11 yıl önce
matcher.ml 84faa70387 massive cleanup of abstract cast and overload handling 11 yıl önce
optimizer.ml b52b6951af adapt `cast_or_unify` ref name 11 yıl önce
parser.ml 6c460e8540 keep binops intact when resuming in parser 11 yıl önce
type.ml 7467eea237 add some stack overflow detection (see #1757) 11 yıl önce
typecore.ml b52b6951af adapt `cast_or_unify` ref name 11 yıl önce
typeload.ml 863a8bb798 attempt to use TLazy correctly (see #3279) 11 yıl önce
typer.ml 1142dbcf5e fix haxe.PosInfos regression (closes #3348) 11 yıl önce

README.md

Haxe logo

Haxe - The Cross-Platform Toolkit

Build Status

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