├── .gitignore ├── .travis.yml ├── Error.png ├── LICENSE ├── README.md ├── _example ├── 01-functions │ └── main.go ├── 02-modules │ └── main.go ├── 03-tables │ └── main.go └── 04-highlight-errors │ └── main.go ├── argument.go ├── benchmarks_test.go ├── binder.go ├── binder_test.go ├── context.go ├── doc.go ├── doc_test.go ├── error.go ├── error_test.go ├── loader.go ├── lock.json ├── lua_test.go ├── lua_test.lua ├── manifest.json ├── module.go ├── module_test.go ├── options.go ├── push.go ├── table.go └── table_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/.travis.yml -------------------------------------------------------------------------------- /Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/Error.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/README.md -------------------------------------------------------------------------------- /_example/01-functions/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/_example/01-functions/main.go -------------------------------------------------------------------------------- /_example/02-modules/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/_example/02-modules/main.go -------------------------------------------------------------------------------- /_example/03-tables/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/_example/03-tables/main.go -------------------------------------------------------------------------------- /_example/04-highlight-errors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/_example/04-highlight-errors/main.go -------------------------------------------------------------------------------- /argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/argument.go -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /binder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/binder.go -------------------------------------------------------------------------------- /binder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/binder_test.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/context.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/doc.go -------------------------------------------------------------------------------- /doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/doc_test.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/error.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/error_test.go -------------------------------------------------------------------------------- /loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/loader.go -------------------------------------------------------------------------------- /lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/lock.json -------------------------------------------------------------------------------- /lua_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/lua_test.go -------------------------------------------------------------------------------- /lua_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/lua_test.lua -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/manifest.json -------------------------------------------------------------------------------- /module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/module.go -------------------------------------------------------------------------------- /module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/module_test.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/options.go -------------------------------------------------------------------------------- /push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/push.go -------------------------------------------------------------------------------- /table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/table.go -------------------------------------------------------------------------------- /table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/binder/HEAD/table_test.go --------------------------------------------------------------------------------