Açıklama Yok

Hugh 3b42bbf2ee [cpp] Fix interface casting for cppia. Do not inline native functions on cppia. Export IMap interface 10 yıl önce
extra 2025cead27 Update CHANGES.txt 10 yıl önce
libs @ 371962aacc b8712e5014 sync 10 yıl önce
std 3b42bbf2ee [cpp] Fix interface casting for cppia. Do not inline native functions on cppia. Export IMap interface 10 yıl önce
tests 3b42bbf2ee [cpp] Fix interface casting for cppia. Do not inline native functions on cppia. Export IMap interface 10 yıl önce
.gitattributes 8e32d7f112 LF normalization 12 yıl önce
.gitignore 80542dfc34 [SauceLabs] Parameterized the config. 10 yıl önce
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 yıl önce
.travis.yml c6d856cb8e [TravisCI] minor 10 yıl önce
CONTRIBUTING.md 46b676fd0a Create CONTRIBUTING.md 10 yıl önce
Makefile 0222951a15 added stubs linking 10 yıl önce
Makefile.win 0222951a15 added stubs linking 10 yıl önce
README.md a8f0a9bb81 Update README.md 10 yıl önce
analyzer.ml e96941646a [analyzer] make sure LocalDCE iterates expression in reverse order so we do not miss any local usages (closes #3970) 10 yıl önce
appveyor.yml 40ef585cdb [CI] refactor ci code 11 yıl önce
ast.ml a2605670ec [java-lib] (unstable) Cleanup normalize_jclass, and start to add no-check mode. 10 yıl önce
codegen.ml a4ab1a90d3 fix type of metadata TObjectDecl 10 yıl önce
common.ml a2605670ec [java-lib] (unstable) Cleanup normalize_jclass, and start to add no-check mode. 10 yıl önce
dce.ml 44ac0561a2 remove python specific names, because dce runs before @:native names are applied 10 yıl önce
filters.ml 99efbe15f4 allow using abstracts as value if they have `@:runtimeValue` 10 yıl önce
genas3.ml 3060ca7fbb base64-encode resource names when writing to file system (see #3760) 10 yıl önce
gencommon.ml d0a8d8a02f [cs] Also add __typeof__ to the list of special vars 10 yıl önce
gencpp.ml 3b42bbf2ee [cpp] Fix interface casting for cppia. Do not inline native functions on cppia. Export IMap interface 10 yıl önce
gencs.ml 4dbea25f8d [java/cs] Added array function that creates a new array; Added NativeArray helpers; Closes #3979 10 yıl önce
genjava.ml 4dbea25f8d [java/cs] Added array function that creates a new array; Added NativeArray helpers; Closes #3979 10 yıl önce
genjs.ml c351a53899 use rbuffer for JS output (close #3874) 10 yıl önce
genneko.ml c0a3985640 allow catching `@:runtimeValue` abstracts (closes #3948) 10 yıl önce
genphp.ml 85fdf858fc [php] use new resource encoding (unescaping does not work) 10 yıl önce
genpy.ml 9ae0a2c7d9 [python] move python.lib.Set to python.Set, cleanup and add missing methods, use native "set" instead of importing from builtins 10 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 b7cca6dcbb add back old Xml implementations as target.NativeXml for cpp, flash, neko and php (see #3910) 10 yıl önce
genxml.ml 5a58ba133c flash player 16 api sync 10 yıl önce
haxe.hxproj 462dd87ba8 ignore a few files 10 yıl önce
interp.ml 51369ce37b [macro] set eof to false upon file seek 10 yıl önce
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 yıl önce
main.ml 12a0daaddf [cpp] Remap the INT_ constants 10 yıl önce
matcher.ml 4abe1ab587 allow null matching on enums (closes #3338) 10 yıl önce
optimizer.ml 4806487d56 do not try to be too smart about inlining constructors (see #3967) 10 yıl önce
parser.ml a2821832d5 [parser] allow ECheckType in unsafe casts if cast-expression has parentheses (closes #3950) 10 yıl önce
type.ml 91dcfe9ccb fix TObjectDecl in s_expr 10 yıl önce
typecore.ml 39d918246d minor changes in pass debugging 10 yıl önce
typeload.ml d9d88b3f96 [java] Correctly allow boxed types to be used. Closes #2964 10 yıl önce
typer.ml 8d01ba9dd8 [python] major work on improving generated python code cleanliness 10 yıl önce

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