├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── tasks.json ├── README.md ├── dump └── decoding_error.txt ├── haxelib.json ├── javadebug.bat ├── javamonitor.bat ├── src-phantomjs ├── phantomjs.html └── phantomjs.js ├── src ├── DataClass.hx ├── dataclass │ ├── DataClassErrors.hx │ ├── DataClassException.hx │ ├── DataMap.hx │ ├── DateConverter.hx │ └── macros │ │ └── Builder.hx └── haxelib.json ├── submithaxelib.bat ├── tests-node.hxml ├── tests.hxml └── tests ├── Dataclass2.hx ├── Tests.hx └── Tests2.hx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/README.md -------------------------------------------------------------------------------- /dump/decoding_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/dump/decoding_error.txt -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/haxelib.json -------------------------------------------------------------------------------- /javadebug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/javadebug.bat -------------------------------------------------------------------------------- /javamonitor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/javamonitor.bat -------------------------------------------------------------------------------- /src-phantomjs/phantomjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src-phantomjs/phantomjs.html -------------------------------------------------------------------------------- /src-phantomjs/phantomjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src-phantomjs/phantomjs.js -------------------------------------------------------------------------------- /src/DataClass.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/DataClass.hx -------------------------------------------------------------------------------- /src/dataclass/DataClassErrors.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/dataclass/DataClassErrors.hx -------------------------------------------------------------------------------- /src/dataclass/DataClassException.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/dataclass/DataClassException.hx -------------------------------------------------------------------------------- /src/dataclass/DataMap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/dataclass/DataMap.hx -------------------------------------------------------------------------------- /src/dataclass/DateConverter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/dataclass/DateConverter.hx -------------------------------------------------------------------------------- /src/dataclass/macros/Builder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/dataclass/macros/Builder.hx -------------------------------------------------------------------------------- /src/haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/src/haxelib.json -------------------------------------------------------------------------------- /submithaxelib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/submithaxelib.bat -------------------------------------------------------------------------------- /tests-node.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/tests-node.hxml -------------------------------------------------------------------------------- /tests.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/tests.hxml -------------------------------------------------------------------------------- /tests/Dataclass2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/tests/Dataclass2.hx -------------------------------------------------------------------------------- /tests/Tests.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/tests/Tests.hx -------------------------------------------------------------------------------- /tests/Tests2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciscoheat/dataclass/HEAD/tests/Tests2.hx --------------------------------------------------------------------------------