File: Jit.hx

package info (click to toggle)
haxe 1%3A3.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,888 kB
  • sloc: ml: 106,129; ansic: 1,978; makefile: 609; cpp: 357; java: 349; cs: 323; python: 250; sh: 75; objc: 64; xml: 29
file content (21 lines) | stat: -rw-r--r-- 571 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package lua;

import haxe.Constraints.Function;

#if lua_jit
@:native("_G.jit")
extern class Jit {
	public static function on(?f:Function, ?recursive:Bool) : Void;
	public static function off(?f:Function, ?recursive:Bool) : Void;
	public static function flush(?f:Function, ?recursive:Bool) : Void;
	public static function status() : Bool;
	public static var version : String;
	public static var version_num : Int;
	public static var os : String;
	public static var arch : String;
	public static var opt : { start : Function };
	public static var util : Dynamic;
}
#end