├── .gitignore ├── LICENSE ├── README.md ├── js_wrapping ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ └── js_wrapping.dart └── pubspec.yaml └── js_wrapping_generator ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── build.yaml ├── example └── gmaps │ └── map-simple │ ├── map.html │ ├── page.dart │ └── page.js.g.dart ├── lib ├── builder.dart └── src │ ├── generator.dart │ └── transfomation.dart ├── pubspec.yaml └── test └── builder_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | js_wrapping/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | js_wrapping/README.md -------------------------------------------------------------------------------- /js_wrapping/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/AUTHORS -------------------------------------------------------------------------------- /js_wrapping/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/CHANGELOG.md -------------------------------------------------------------------------------- /js_wrapping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/LICENSE -------------------------------------------------------------------------------- /js_wrapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/README.md -------------------------------------------------------------------------------- /js_wrapping/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/analysis_options.yaml -------------------------------------------------------------------------------- /js_wrapping/lib/js_wrapping.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/lib/js_wrapping.dart -------------------------------------------------------------------------------- /js_wrapping/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping/pubspec.yaml -------------------------------------------------------------------------------- /js_wrapping_generator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/CHANGELOG.md -------------------------------------------------------------------------------- /js_wrapping_generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/LICENSE -------------------------------------------------------------------------------- /js_wrapping_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/README.md -------------------------------------------------------------------------------- /js_wrapping_generator/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/analysis_options.yaml -------------------------------------------------------------------------------- /js_wrapping_generator/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/build.yaml -------------------------------------------------------------------------------- /js_wrapping_generator/example/gmaps/map-simple/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/example/gmaps/map-simple/map.html -------------------------------------------------------------------------------- /js_wrapping_generator/example/gmaps/map-simple/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/example/gmaps/map-simple/page.dart -------------------------------------------------------------------------------- /js_wrapping_generator/example/gmaps/map-simple/page.js.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/example/gmaps/map-simple/page.js.g.dart -------------------------------------------------------------------------------- /js_wrapping_generator/lib/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/lib/builder.dart -------------------------------------------------------------------------------- /js_wrapping_generator/lib/src/generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/lib/src/generator.dart -------------------------------------------------------------------------------- /js_wrapping_generator/lib/src/transfomation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/lib/src/transfomation.dart -------------------------------------------------------------------------------- /js_wrapping_generator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/pubspec.yaml -------------------------------------------------------------------------------- /js_wrapping_generator/test/builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a14n/dart-js-wrapping/HEAD/js_wrapping_generator/test/builder_test.dart --------------------------------------------------------------------------------