This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package; | |
import haxe.ds.IntMap; | |
import sys.db.Object; | |
import sys.FileSystem; | |
import neko.Lib; | |
//import neko.Sys; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package; | |
import haxe.ds.IntMap; | |
import sys.db.Object; | |
import sys.FileSystem; | |
import neko.Lib; | |
//import neko.Sys; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var vm = require('vm'), | |
code = 'var square = n * n;', | |
fn = new Function('n', code), | |
script = vm.createScript(code), | |
sandbox; | |
n = 5; | |
sandbox = { n: n }; | |
benchmark = function(title, funk) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import flash.events.IEventDispatcher; | |
import haxe.ds.ObjectMap; | |
import haxe.io.Error; | |
import flash.display.BitmapData; | |
import flash.display.Bitmap; | |
import flash.display.MovieClip; | |
import flash.events.Event; | |
using Lambda; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import flash.display.Bitmap; | |
import flash.display.BitmapData; | |
import flash.display.Loader; | |
import flash.display.LoaderInfo; | |
import flash.display.MovieClip; | |
import flash.display.StageAlign; | |
import flash.display.StageScaleMode; | |
import flash.Lib; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import flash.events.IEventDispatcher; | |
import haxe.ds.ObjectMap; | |
import haxe.io.Error; | |
import flash.display.BitmapData; | |
import flash.display.Bitmap; | |
import flash.display.MovieClip; | |
import flash.events.Event; | |
using Lambda; | |
using Reflect; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import flash.display.Bitmap; | |
import flash.display.BitmapData; | |
import flash.display.Loader; | |
import flash.display.LoaderInfo; | |
import flash.display.MovieClip; | |
import flash.display.StageAlign; | |
import flash.display.StageScaleMode; | |
import flash.Lib; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import flash.events.EventDispatcher; | |
import flash.events.IEventDispatcher; | |
import haxe.ds.ObjectMap; | |
import haxe.io.Error; | |
import flash.display.BitmapData; | |
import flash.display.Bitmap; | |
import flash.display.MovieClip; | |
import flash.events.Event; | |
import flash.display.DisplayObjectContainer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
/** | |
* ... | |
* @author sonygod | |
*/ | |
import async.Build; | |
import async.Async; | |
class Test implements Build | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { "use strict"; | |
var IntIterator = function(min,max) { | |
this.min = min; | |
this.max = max; | |
}; | |
IntIterator.prototype = { | |
next: function() { | |
return this.min++; | |
} | |
,hasNext: function() { |