├── .arc └── npm-test │ ├── __phutil_library_init__.php │ ├── __phutil_library_map__.php │ └── src │ └── NpmUnitTestEngine.php ├── .arcconfig ├── .clang-format ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── gulpfile.js ├── lib ├── base.ts ├── call.ts ├── declaration.ts ├── expression.ts ├── facade_converter.ts ├── literal.ts ├── main.ts ├── mkdirp.ts ├── module.ts ├── statement.ts └── type.ts ├── package.json ├── test ├── call_test.ts ├── declaration_test.ts ├── decorator_test.ts ├── e2e │ ├── angular2 │ │ └── src │ │ │ └── facade │ │ │ └── lang.d.ts │ ├── helloworld.ts │ ├── lib.ts │ ├── pubspec.yaml │ ├── test.d.ts │ └── tsconfig.json ├── expression_test.ts ├── facade_converter_test.ts ├── function_test.ts ├── literal_test.ts ├── main_test.ts ├── module_test.ts ├── statement_test.ts ├── test_support.ts ├── tsc_e2e │ ├── map_target │ │ └── dep.ts │ ├── p1 │ │ └── user.ts │ └── tsconfig.json └── type_test.ts ├── tsconfig.json ├── tsd.json └── tslint.json /.arc/npm-test/__phutil_library_init__.php: -------------------------------------------------------------------------------- 1 |