| 1234567891011121314151617181920212223242526272829 |
- {
- "name" : "IO",
- "sources" : ["Source/Atomic/IO"],
- "classes" : ["Log", "File", "FileSystem", "FileWatcher", "BufferQueue"],
- "overloads" : {
- "File" : {
- "File" : ["Context", "String", "FileMode"]
- }
- },
- "typescript_decl" : {
- "File" : [
- "readText():string;",
- "writeString(text:string):void;"
- ],
- "FileSystem" : [
- "scanDir(pathName:string, filter:string, flags:number, recursive:boolean):Array<string>;"
- ]
- },
-
- "haxe_decl" : {
- "File" : [
- "function readText():String;",
- "function writeString(text:String):Void;"
- ],
- "FileSystem" : [
- "function scanDir(pathName:String, filter:String, flags:UInt, recursive:Bool):Array<String>;"
- ]
- }
- }
|