Nenhuma descrição

Cauê Waneck 16f33030a0 [java/cs] OpMod receives Float values and return Float values as well. Closes #3447 11 anos atrás
extra 3867caebee add recent cs/java changes to CHANGES.txt 11 anos atrás
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 anos atrás
std ff7df08646 [python] that method REALLY does not want to have local DCE applied to it 11 anos atrás
tests 16f33030a0 [java/cs] OpMod receives Float values and return Float values as well. Closes #3447 11 anos atrás
.gitattributes 8e32d7f112 LF normalization 12 anos atrás
.gitignore f301baef6a add static analyzer 11 anos atrás
.gitmodules e37b6914f4 added haxelib repo in extra/haxelib_src (close #2258) 11 anos atrás
.travis.yml 9f6a1d65a9 give travis OSX a break (see #https://github.com/travis-ci/travis-ci/issues/2792) 11 anos atrás
Makefile f301baef6a add static analyzer 11 anos atrás
Makefile.win bc8b2e7315 remove 2>/dev/null from makefile kill (does not work for me) 11 anos atrás
README.md 1d880435c7 [docs] Update README.md 11 anos atrás
analyzer.ml 6498e57b31 change const propagation implementation 11 anos atrás
ast.ml f301baef6a add static analyzer 11 anos atrás
codegen.ml 0979a9a16c make sure the raising version of `cast_or_unify` is used when trying to find array access (closes #3432) 11 anos atrás
common.ml f301baef6a add static analyzer 11 anos atrás
dce.ml a4a5dc4639 I am the beginning and the end to fix your control flow. 11 anos atrás
filters.ml 1b97294a0a juggle filter order a bit to allow reduction before analysis (closes #3426) 11 anos atrás
genas3.ml a7a7cc287c [as3] do not generate TObjectDecl at block-level here as well (closes #3440) 11 anos atrás
gencommon.ml 16f33030a0 [java/cs] OpMod receives Float values and return Float values as well. Closes #3447 11 anos atrás
gencpp.ml 1aa421975e [cpp] Fix compiler error when creating closure-of-closure of this pointer. Continues the hack that relies on name. 11 anos atrás
gencs.ml a104251633 [cs] make reflection field hashes not cause "unchecked" context (closes #2450) 11 anos atrás
genjava.ml 7950c7cd1f [java] fix some ugly whitespaces 11 anos atrás
genjs.ml ee3a9b0efc [js] do not generate block-level TObjectDecl, instead treat the fields as block expressions (closes #3440) 11 anos atrás
genneko.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 anos atrás
genphp.ml 534fd95ef8 [php] we now have real empty blocks, so generate them (see 42be1b96bf7353e3194dc065cd1361a31ee4bdb1) 11 anos atrás
genpy.ml 8582bf9452 [python] don't wrap classes that inherit from BaseException in _HxException 11 anos atrás
genswf.ml 53f0a0c259 rename `(cl|en|t|a|mt)_types` to `_params` for consistency 11 anos atrás
genswf8.ml 6568450332 remove TPatMatch (will revisit in the undefined future) 11 anos atrás
genswf9.ml f399394472 [swf] do not generate dynamic method fields in interfaces (see #3159) 11 anos atrás
genxml.ml ce8f380722 Merge pull request #3341 from Simn/abstract_cast_rewrite 11 anos atrás
haxe.hxproj 35963f675f hide analyzer outputs 11 anos atrás
interp.ml c5b0c649fc Revert "return correct path for Sys.executablePath() when in macro (closes #3401)" 11 anos atrás
lexer.mll caaa4bc48b disallow leading zeroes for int and float literals (closes #3295) 11 anos atrás
main.ml aff9d8682b if the hxml file is not found, delay the error until arguments are actually processed (no errors caught at this point) 11 anos atrás
matcher.ml 8420693ae2 move `is_explicit_null` to type.ml because it is needed in the analyzer 11 anos atrás
optimizer.ml 5ed8dc3ff6 do not cancel constructor inlining when assigning to an "unknown" field, instead add that field to the field list 11 anos atrás
parser.ml 9f74c83842 resume in var init (closes #3422) 11 anos atrás
type.ml 8420693ae2 move `is_explicit_null` to type.ml because it is needed in the analyzer 11 anos atrás
typecore.ml d68e610ff4 allow iteration over abstracts having length and `@;arrayAccess` fields again 11 anos atrás
typeload.ml 1d850c5796 show proper error message when a class method has different number of arguments than required in implemented interface (closes #3417) 11 anos atrás
typer.ml f301baef6a add static analyzer 11 anos atrás

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