├── .gitignore ├── .npmignore ├── .spmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── bin └── bearcat-bin.js ├── bower.json ├── browser-test.html ├── coverage.html ├── coverage └── blanket.js ├── dist ├── bearcat.js └── bearcat.min.js ├── examples ├── README.md ├── aop │ ├── aspect.js │ ├── base.js │ ├── car.js │ ├── context.json │ └── wheel.js ├── aop_annotation │ ├── app.js │ ├── app │ │ ├── aspect.js │ │ ├── base.js │ │ ├── car.js │ │ └── wheel.js │ └── context.json ├── app.js ├── browser │ ├── README.md │ ├── simple │ │ ├── app │ │ │ └── car.js │ │ ├── bearcat-bootstrap.js │ │ ├── context.json │ │ └── index.html │ ├── simple_di │ │ ├── app.js │ │ ├── app │ │ │ ├── car.js │ │ │ ├── engine.js │ │ │ └── wheel.js │ │ ├── bearcat-bootstrap.js │ │ ├── context.json │ │ └── index.html │ └── simple_init │ │ ├── app │ │ └── car.js │ │ ├── bearcat-bootstrap.js │ │ ├── context.json │ │ └── index.html ├── circle_reference │ ├── app │ │ ├── bus.js │ │ └── car.js │ └── context.json ├── complex_function_annotation │ ├── app.js │ ├── app │ │ ├── car.js │ │ ├── engine.js │ │ ├── light.js │ │ └── wheel.js │ ├── context-config.json │ └── context.json ├── context_namespace │ ├── app │ │ ├── beans.json │ │ └── car.js │ ├── app1 │ │ ├── beans.json │ │ └── car.js │ ├── app2 │ │ ├── beans.json │ │ └── car.js │ └── context.json ├── define_module │ ├── app.js │ ├── app │ │ ├── car.js │ │ └── wheel.js │ └── context.json ├── extend_bean │ ├── app.js │ ├── app │ │ ├── bus.js │ │ ├── cannon.js │ │ ├── car.js │ │ └── tank.js │ └── context.json ├── hot_reload │ ├── app.js │ ├── bus.js │ ├── car.js │ ├── context.json │ ├── fs.js │ ├── hot │ │ ├── bus.js │ │ └── car.js │ ├── hot2 │ │ └── tank.js │ └── tank.js ├── model │ ├── app.js │ ├── app │ │ ├── constraint │ │ │ ├── notNullConstraint.js │ │ │ └── sizeConstraint.js │ │ └── model │ │ │ ├── builtinModel.js │ │ │ ├── carModel.js │ │ │ ├── constaintModel.js │ │ │ ├── filterModel.js │ │ │ └── simpleModel.js │ └── context.json ├── model_benchmark │ ├── app.js │ ├── app │ │ ├── constraint │ │ │ ├── notNullConstraint.js │ │ │ └── sizeConstraint.js │ │ └── model │ │ │ ├── builtinModel.js │ │ │ ├── carModel.js │ │ │ ├── constaintModel.js │ │ │ ├── filterModel.js │ │ │ └── simpleModel.js │ └── context.json ├── model_test │ ├── app.js │ ├── app │ │ ├── constraint │ │ │ ├── notNull.js │ │ │ └── size.js │ │ ├── data │ │ │ └── mockResultSet.js │ │ ├── model │ │ │ ├── authorModel.js │ │ │ ├── blogModel.js │ │ │ ├── blogResultModel.js │ │ │ ├── carErrorModel.js │ │ │ ├── carModel.js │ │ │ ├── commentModel.js │ │ │ └── commentResultModel.js │ │ └── util │ │ │ └── utils.js │ └── context.json ├── multiple_scan │ ├── app1 │ │ ├── car.js │ │ ├── engine.js │ │ └── wheel.js │ ├── app2 │ │ └── bus.js │ └── context.json ├── placeholder │ ├── app.js │ ├── app │ │ ├── bus.js │ │ └── car.js │ ├── config │ │ ├── deep │ │ │ └── car │ │ │ │ └── car.json │ │ ├── dev │ │ │ ├── car.json │ │ │ ├── test.json │ │ │ └── test.xxx │ │ ├── log4js.json │ │ └── prod │ │ │ └── car.json │ └── context.json ├── relative_scan │ ├── app │ │ ├── car.js │ │ ├── engine.js │ │ └── wheel.js │ └── context.json ├── simple │ ├── app │ │ └── car.js │ └── context.json ├── simple_abstract_parent │ ├── beans │ │ ├── bus.js │ │ ├── car.js │ │ ├── engine.js │ │ ├── tank.js │ │ └── wheel.js │ └── context.json ├── simple_args_type │ ├── app │ │ └── car.js │ └── context.json ├── simple_args_value │ ├── car.js │ └── context.json ├── simple_async_init │ ├── app │ │ ├── bus.js │ │ ├── car.js │ │ ├── engine.js │ │ └── wheel.js │ └── context.json ├── simple_destroy_method │ ├── app │ │ └── car.js │ └── context.json ├── simple_factory_bean │ ├── app │ │ ├── car.js │ │ ├── carFactory.js │ │ └── wheel.js │ └── context.json ├── simple_factory_bean_error │ ├── app │ │ ├── car.js │ │ └── carFactory.js │ └── context.json ├── simple_function_annotation │ ├── app │ │ ├── car.js │ │ ├── engine.js │ │ └── wheel.js │ └── context.json ├── simple_imports_context │ ├── app │ │ ├── beans.json │ │ └── car.js │ └── context.json ├── simple_init_method │ ├── app │ │ └── car.js │ └── context.json ├── simple_inject │ ├── app │ │ ├── car.js │ │ ├── car_with.js │ │ ├── engine.js │ │ └── wheel.js │ └── context.json ├── simple_inject_meta │ ├── app │ │ ├── car.js │ │ └── wheel.js │ └── context.json ├── simple_lazy_init │ ├── app │ │ └── car.js │ └── context.json ├── simple_meta │ ├── app │ │ ├── bus.js │ │ └── car.js │ ├── car.js │ └── context.json ├── simple_meta_error │ ├── app │ │ ├── bus.js │ │ ├── car.js │ │ ├── engine.js │ │ ├── mobile.js │ │ ├── tank.js │ │ └── wheel.js │ └── context.json ├── simple_meta_merge │ ├── car.js │ └── context.json ├── simple_meta_mismatch │ ├── car.js │ └── context.json ├── simple_module_inject │ ├── beans │ │ └── car.js │ ├── context.json │ ├── index.js │ ├── node_modules │ │ └── moduleB │ │ │ ├── beans │ │ │ └── wheel.js │ │ │ ├── context.json │ │ │ ├── index.js │ │ │ └── package.json │ └── package.json ├── simple_parent_bean │ ├── beans │ │ ├── bus.js │ │ ├── car.js │ │ ├── engine.js │ │ ├── tank.js │ │ └── wheel.js │ └── context.json ├── simple_prototype │ ├── app │ │ └── car.js │ └── context.json └── state_file_scope_var │ ├── app.js │ ├── app │ └── car.js │ └── context.json ├── gruntfile.js ├── history.md ├── index.js ├── lib ├── aop │ ├── advisor.js │ ├── aspect.js │ ├── autoproxy │ │ └── autoProxyCreator.js │ ├── framework │ │ ├── advisedSupport.js │ │ ├── dynamicAopProxy.js │ │ ├── dynamicMetaProxy.js │ │ └── proxyFactory.js │ ├── pointcut.js │ └── targetSource.js ├── beans │ ├── beanFactory.js │ ├── moduleFactory.js │ ├── singletonBeanFactory.js │ └── support │ │ ├── beanDefinition.js │ │ ├── beanDefinitionVisitor.js │ │ ├── beanModule.js │ │ ├── beanWrapper.js │ │ ├── placeHolderConfigurer.js │ │ └── placeHolderResolver.js ├── bearcat.js ├── context │ └── applicationContext.js ├── model │ ├── constraints │ │ ├── index.js │ │ ├── max.js │ │ ├── min.js │ │ ├── notNull.js │ │ ├── null.js │ │ ├── pattern.js │ │ └── size.js │ ├── modelAttribute.js │ ├── modelConstraint.js │ ├── modelDefinition.js │ ├── modelFilter.js │ ├── modelKeyMapResolver.js │ └── modelProxy.js ├── resource │ ├── asyncScriptLoader.js │ ├── bootStrapLoader.js │ ├── configLoader.js │ ├── metaLoader.js │ ├── propertiesLoader.js │ └── resourceLoader.js └── util │ ├── aopUtil.js │ ├── beanUtil.js │ ├── constant.js │ ├── fileUtil.js │ ├── metaUtil.js │ ├── modelUtil.js │ ├── requestUtil.js │ ├── requireUtil.js │ ├── scriptUtil.js │ ├── utils.js │ └── validatorUtil.js ├── package.json ├── shim ├── builtins.js ├── chokidar.js ├── logger.js ├── modules │ ├── os.js │ ├── path.js │ ├── process.js │ ├── support │ │ ├── inherits.js │ │ └── isBuffer.js │ └── util.js └── object.js └── test ├── aop ├── advisor.js ├── aop.js ├── aop_annotation.js ├── aspect.js ├── debug.js ├── framework │ ├── dynamicAopProxy.js │ ├── dynamicMetaProxy.js │ └── proxyFactory.js ├── pointcut.js └── targetSource.js ├── beans ├── beanFactory.js ├── singletonBeanFactory.js └── support │ ├── beanDefinition.js │ ├── beanDefinitionVisitor.js │ ├── beanWrapper.js │ ├── placeHolderConfigurer.js │ └── placeHolderResolver.js ├── bearcat.js ├── browser ├── browserified_tests.js └── index.html ├── context ├── applicationContext.js └── debug.js ├── debug.js ├── mock-base ├── mock-annotation-function.js ├── mock-arg-props.js ├── mock-compare.js └── mock-meta.js ├── model ├── debug.js ├── model.js ├── modelAttribute.js ├── modelConstraint.js ├── modelDefinition.js ├── modelFilter.js └── modelProxy.js ├── moduleA ├── beans │ └── wheel.js ├── context.json ├── index.js ├── node_modules │ └── moduleB │ │ ├── beans │ │ └── bus.js │ │ ├── context.json │ │ ├── index.js │ │ └── package.json └── package.json ├── resource ├── configLoader.js ├── metaLoader.js ├── propertiesLoader.js └── resourceLoader.js └── util ├── aopUtil.js ├── beanUtil.js ├── debug.js ├── fileUtil.js ├── metaUtil.js ├── modelUtil.js ├── utils.js └── validatorUtil.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/.npmignore -------------------------------------------------------------------------------- /.spmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/.spmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/README.md -------------------------------------------------------------------------------- /bin/bearcat-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/bin/bearcat-bin.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/bower.json -------------------------------------------------------------------------------- /browser-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/browser-test.html -------------------------------------------------------------------------------- /coverage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/coverage.html -------------------------------------------------------------------------------- /coverage/blanket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/coverage/blanket.js -------------------------------------------------------------------------------- /dist/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/dist/bearcat.js -------------------------------------------------------------------------------- /dist/bearcat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/dist/bearcat.min.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/aop/aspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop/aspect.js -------------------------------------------------------------------------------- /examples/aop/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop/base.js -------------------------------------------------------------------------------- /examples/aop/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop/car.js -------------------------------------------------------------------------------- /examples/aop/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop/context.json -------------------------------------------------------------------------------- /examples/aop/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop/wheel.js -------------------------------------------------------------------------------- /examples/aop_annotation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop_annotation/app.js -------------------------------------------------------------------------------- /examples/aop_annotation/app/aspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop_annotation/app/aspect.js -------------------------------------------------------------------------------- /examples/aop_annotation/app/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop_annotation/app/base.js -------------------------------------------------------------------------------- /examples/aop_annotation/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop_annotation/app/car.js -------------------------------------------------------------------------------- /examples/aop_annotation/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop_annotation/app/wheel.js -------------------------------------------------------------------------------- /examples/aop_annotation/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/aop_annotation/context.json -------------------------------------------------------------------------------- /examples/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/app.js -------------------------------------------------------------------------------- /examples/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/README.md -------------------------------------------------------------------------------- /examples/browser/simple/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple/app/car.js -------------------------------------------------------------------------------- /examples/browser/simple/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple/bearcat-bootstrap.js -------------------------------------------------------------------------------- /examples/browser/simple/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple/context.json -------------------------------------------------------------------------------- /examples/browser/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple/index.html -------------------------------------------------------------------------------- /examples/browser/simple_di/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/app.js -------------------------------------------------------------------------------- /examples/browser/simple_di/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/app/car.js -------------------------------------------------------------------------------- /examples/browser/simple_di/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/app/engine.js -------------------------------------------------------------------------------- /examples/browser/simple_di/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/app/wheel.js -------------------------------------------------------------------------------- /examples/browser/simple_di/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/bearcat-bootstrap.js -------------------------------------------------------------------------------- /examples/browser/simple_di/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/context.json -------------------------------------------------------------------------------- /examples/browser/simple_di/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_di/index.html -------------------------------------------------------------------------------- /examples/browser/simple_init/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_init/app/car.js -------------------------------------------------------------------------------- /examples/browser/simple_init/bearcat-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_init/bearcat-bootstrap.js -------------------------------------------------------------------------------- /examples/browser/simple_init/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_init/context.json -------------------------------------------------------------------------------- /examples/browser/simple_init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/browser/simple_init/index.html -------------------------------------------------------------------------------- /examples/circle_reference/app/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/circle_reference/app/bus.js -------------------------------------------------------------------------------- /examples/circle_reference/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/circle_reference/app/car.js -------------------------------------------------------------------------------- /examples/circle_reference/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/circle_reference/context.json -------------------------------------------------------------------------------- /examples/complex_function_annotation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/app.js -------------------------------------------------------------------------------- /examples/complex_function_annotation/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/app/car.js -------------------------------------------------------------------------------- /examples/complex_function_annotation/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/app/engine.js -------------------------------------------------------------------------------- /examples/complex_function_annotation/app/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/app/light.js -------------------------------------------------------------------------------- /examples/complex_function_annotation/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/app/wheel.js -------------------------------------------------------------------------------- /examples/complex_function_annotation/context-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/context-config.json -------------------------------------------------------------------------------- /examples/complex_function_annotation/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/complex_function_annotation/context.json -------------------------------------------------------------------------------- /examples/context_namespace/app/beans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/app/beans.json -------------------------------------------------------------------------------- /examples/context_namespace/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/app/car.js -------------------------------------------------------------------------------- /examples/context_namespace/app1/beans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/app1/beans.json -------------------------------------------------------------------------------- /examples/context_namespace/app1/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/app1/car.js -------------------------------------------------------------------------------- /examples/context_namespace/app2/beans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/app2/beans.json -------------------------------------------------------------------------------- /examples/context_namespace/app2/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/app2/car.js -------------------------------------------------------------------------------- /examples/context_namespace/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/context_namespace/context.json -------------------------------------------------------------------------------- /examples/define_module/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/define_module/app.js -------------------------------------------------------------------------------- /examples/define_module/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/define_module/app/car.js -------------------------------------------------------------------------------- /examples/define_module/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/define_module/app/wheel.js -------------------------------------------------------------------------------- /examples/define_module/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/define_module/context.json -------------------------------------------------------------------------------- /examples/extend_bean/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/extend_bean/app.js -------------------------------------------------------------------------------- /examples/extend_bean/app/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/extend_bean/app/bus.js -------------------------------------------------------------------------------- /examples/extend_bean/app/cannon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/extend_bean/app/cannon.js -------------------------------------------------------------------------------- /examples/extend_bean/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/extend_bean/app/car.js -------------------------------------------------------------------------------- /examples/extend_bean/app/tank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/extend_bean/app/tank.js -------------------------------------------------------------------------------- /examples/extend_bean/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/extend_bean/context.json -------------------------------------------------------------------------------- /examples/hot_reload/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/app.js -------------------------------------------------------------------------------- /examples/hot_reload/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/bus.js -------------------------------------------------------------------------------- /examples/hot_reload/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/car.js -------------------------------------------------------------------------------- /examples/hot_reload/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/context.json -------------------------------------------------------------------------------- /examples/hot_reload/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/fs.js -------------------------------------------------------------------------------- /examples/hot_reload/hot/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/hot/bus.js -------------------------------------------------------------------------------- /examples/hot_reload/hot/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/hot/car.js -------------------------------------------------------------------------------- /examples/hot_reload/hot2/tank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/hot2/tank.js -------------------------------------------------------------------------------- /examples/hot_reload/tank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/hot_reload/tank.js -------------------------------------------------------------------------------- /examples/model/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app.js -------------------------------------------------------------------------------- /examples/model/app/constraint/notNullConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/constraint/notNullConstraint.js -------------------------------------------------------------------------------- /examples/model/app/constraint/sizeConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/constraint/sizeConstraint.js -------------------------------------------------------------------------------- /examples/model/app/model/builtinModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/model/builtinModel.js -------------------------------------------------------------------------------- /examples/model/app/model/carModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/model/carModel.js -------------------------------------------------------------------------------- /examples/model/app/model/constaintModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/model/constaintModel.js -------------------------------------------------------------------------------- /examples/model/app/model/filterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/model/filterModel.js -------------------------------------------------------------------------------- /examples/model/app/model/simpleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/app/model/simpleModel.js -------------------------------------------------------------------------------- /examples/model/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model/context.json -------------------------------------------------------------------------------- /examples/model_benchmark/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/constraint/notNullConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/constraint/notNullConstraint.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/constraint/sizeConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/constraint/sizeConstraint.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/model/builtinModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/model/builtinModel.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/model/carModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/model/carModel.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/model/constaintModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/model/constaintModel.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/model/filterModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/model/filterModel.js -------------------------------------------------------------------------------- /examples/model_benchmark/app/model/simpleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/app/model/simpleModel.js -------------------------------------------------------------------------------- /examples/model_benchmark/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_benchmark/context.json -------------------------------------------------------------------------------- /examples/model_test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app.js -------------------------------------------------------------------------------- /examples/model_test/app/constraint/notNull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/constraint/notNull.js -------------------------------------------------------------------------------- /examples/model_test/app/constraint/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/constraint/size.js -------------------------------------------------------------------------------- /examples/model_test/app/data/mockResultSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/data/mockResultSet.js -------------------------------------------------------------------------------- /examples/model_test/app/model/authorModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/authorModel.js -------------------------------------------------------------------------------- /examples/model_test/app/model/blogModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/blogModel.js -------------------------------------------------------------------------------- /examples/model_test/app/model/blogResultModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/blogResultModel.js -------------------------------------------------------------------------------- /examples/model_test/app/model/carErrorModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/carErrorModel.js -------------------------------------------------------------------------------- /examples/model_test/app/model/carModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/carModel.js -------------------------------------------------------------------------------- /examples/model_test/app/model/commentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/commentModel.js -------------------------------------------------------------------------------- /examples/model_test/app/model/commentResultModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/model/commentResultModel.js -------------------------------------------------------------------------------- /examples/model_test/app/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/app/util/utils.js -------------------------------------------------------------------------------- /examples/model_test/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/model_test/context.json -------------------------------------------------------------------------------- /examples/multiple_scan/app1/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/multiple_scan/app1/car.js -------------------------------------------------------------------------------- /examples/multiple_scan/app1/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/multiple_scan/app1/engine.js -------------------------------------------------------------------------------- /examples/multiple_scan/app1/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/multiple_scan/app1/wheel.js -------------------------------------------------------------------------------- /examples/multiple_scan/app2/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/multiple_scan/app2/bus.js -------------------------------------------------------------------------------- /examples/multiple_scan/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/multiple_scan/context.json -------------------------------------------------------------------------------- /examples/placeholder/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/app.js -------------------------------------------------------------------------------- /examples/placeholder/app/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/app/bus.js -------------------------------------------------------------------------------- /examples/placeholder/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/app/car.js -------------------------------------------------------------------------------- /examples/placeholder/config/deep/car/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/config/deep/car/car.json -------------------------------------------------------------------------------- /examples/placeholder/config/dev/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/config/dev/car.json -------------------------------------------------------------------------------- /examples/placeholder/config/dev/test.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/placeholder/config/dev/test.xxx: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /examples/placeholder/config/log4js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/config/log4js.json -------------------------------------------------------------------------------- /examples/placeholder/config/prod/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/config/prod/car.json -------------------------------------------------------------------------------- /examples/placeholder/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/placeholder/context.json -------------------------------------------------------------------------------- /examples/relative_scan/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/relative_scan/app/car.js -------------------------------------------------------------------------------- /examples/relative_scan/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/relative_scan/app/engine.js -------------------------------------------------------------------------------- /examples/relative_scan/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/relative_scan/app/wheel.js -------------------------------------------------------------------------------- /examples/relative_scan/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/relative_scan/context.json -------------------------------------------------------------------------------- /examples/simple/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple/app/car.js -------------------------------------------------------------------------------- /examples/simple/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple/context.json -------------------------------------------------------------------------------- /examples/simple_abstract_parent/beans/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_abstract_parent/beans/bus.js -------------------------------------------------------------------------------- /examples/simple_abstract_parent/beans/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_abstract_parent/beans/car.js -------------------------------------------------------------------------------- /examples/simple_abstract_parent/beans/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_abstract_parent/beans/engine.js -------------------------------------------------------------------------------- /examples/simple_abstract_parent/beans/tank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_abstract_parent/beans/tank.js -------------------------------------------------------------------------------- /examples/simple_abstract_parent/beans/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_abstract_parent/beans/wheel.js -------------------------------------------------------------------------------- /examples/simple_abstract_parent/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_abstract_parent/context.json -------------------------------------------------------------------------------- /examples/simple_args_type/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_args_type/app/car.js -------------------------------------------------------------------------------- /examples/simple_args_type/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_args_type/context.json -------------------------------------------------------------------------------- /examples/simple_args_value/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_args_value/car.js -------------------------------------------------------------------------------- /examples/simple_args_value/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_args_value/context.json -------------------------------------------------------------------------------- /examples/simple_async_init/app/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_async_init/app/bus.js -------------------------------------------------------------------------------- /examples/simple_async_init/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_async_init/app/car.js -------------------------------------------------------------------------------- /examples/simple_async_init/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_async_init/app/engine.js -------------------------------------------------------------------------------- /examples/simple_async_init/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_async_init/app/wheel.js -------------------------------------------------------------------------------- /examples/simple_async_init/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_async_init/context.json -------------------------------------------------------------------------------- /examples/simple_destroy_method/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_destroy_method/app/car.js -------------------------------------------------------------------------------- /examples/simple_destroy_method/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_destroy_method/context.json -------------------------------------------------------------------------------- /examples/simple_factory_bean/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean/app/car.js -------------------------------------------------------------------------------- /examples/simple_factory_bean/app/carFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean/app/carFactory.js -------------------------------------------------------------------------------- /examples/simple_factory_bean/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean/app/wheel.js -------------------------------------------------------------------------------- /examples/simple_factory_bean/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean/context.json -------------------------------------------------------------------------------- /examples/simple_factory_bean_error/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean_error/app/car.js -------------------------------------------------------------------------------- /examples/simple_factory_bean_error/app/carFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean_error/app/carFactory.js -------------------------------------------------------------------------------- /examples/simple_factory_bean_error/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_factory_bean_error/context.json -------------------------------------------------------------------------------- /examples/simple_function_annotation/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_function_annotation/app/car.js -------------------------------------------------------------------------------- /examples/simple_function_annotation/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_function_annotation/app/engine.js -------------------------------------------------------------------------------- /examples/simple_function_annotation/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_function_annotation/app/wheel.js -------------------------------------------------------------------------------- /examples/simple_function_annotation/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_function_annotation/context.json -------------------------------------------------------------------------------- /examples/simple_imports_context/app/beans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_imports_context/app/beans.json -------------------------------------------------------------------------------- /examples/simple_imports_context/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_imports_context/app/car.js -------------------------------------------------------------------------------- /examples/simple_imports_context/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_imports_context/context.json -------------------------------------------------------------------------------- /examples/simple_init_method/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_init_method/app/car.js -------------------------------------------------------------------------------- /examples/simple_init_method/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_init_method/context.json -------------------------------------------------------------------------------- /examples/simple_inject/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject/app/car.js -------------------------------------------------------------------------------- /examples/simple_inject/app/car_with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject/app/car_with.js -------------------------------------------------------------------------------- /examples/simple_inject/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject/app/engine.js -------------------------------------------------------------------------------- /examples/simple_inject/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject/app/wheel.js -------------------------------------------------------------------------------- /examples/simple_inject/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject/context.json -------------------------------------------------------------------------------- /examples/simple_inject_meta/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject_meta/app/car.js -------------------------------------------------------------------------------- /examples/simple_inject_meta/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject_meta/app/wheel.js -------------------------------------------------------------------------------- /examples/simple_inject_meta/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_inject_meta/context.json -------------------------------------------------------------------------------- /examples/simple_lazy_init/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_lazy_init/app/car.js -------------------------------------------------------------------------------- /examples/simple_lazy_init/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_lazy_init/context.json -------------------------------------------------------------------------------- /examples/simple_meta/app/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta/app/bus.js -------------------------------------------------------------------------------- /examples/simple_meta/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta/app/car.js -------------------------------------------------------------------------------- /examples/simple_meta/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta/car.js -------------------------------------------------------------------------------- /examples/simple_meta/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta/context.json -------------------------------------------------------------------------------- /examples/simple_meta_error/app/bus.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 3 | } -------------------------------------------------------------------------------- /examples/simple_meta_error/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_error/app/car.js -------------------------------------------------------------------------------- /examples/simple_meta_error/app/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_error/app/engine.js -------------------------------------------------------------------------------- /examples/simple_meta_error/app/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_error/app/mobile.js -------------------------------------------------------------------------------- /examples/simple_meta_error/app/tank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_error/app/tank.js -------------------------------------------------------------------------------- /examples/simple_meta_error/app/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_error/app/wheel.js -------------------------------------------------------------------------------- /examples/simple_meta_error/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_error/context.json -------------------------------------------------------------------------------- /examples/simple_meta_merge/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_merge/car.js -------------------------------------------------------------------------------- /examples/simple_meta_merge/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_merge/context.json -------------------------------------------------------------------------------- /examples/simple_meta_mismatch/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_mismatch/car.js -------------------------------------------------------------------------------- /examples/simple_meta_mismatch/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_meta_mismatch/context.json -------------------------------------------------------------------------------- /examples/simple_module_inject/beans/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_module_inject/beans/car.js -------------------------------------------------------------------------------- /examples/simple_module_inject/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_module_inject/context.json -------------------------------------------------------------------------------- /examples/simple_module_inject/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simple_module_inject/node_modules/moduleB/beans/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_module_inject/node_modules/moduleB/beans/wheel.js -------------------------------------------------------------------------------- /examples/simple_module_inject/node_modules/moduleB/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_module_inject/node_modules/moduleB/context.json -------------------------------------------------------------------------------- /examples/simple_module_inject/node_modules/moduleB/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simple_module_inject/node_modules/moduleB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_module_inject/node_modules/moduleB/package.json -------------------------------------------------------------------------------- /examples/simple_module_inject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_module_inject/package.json -------------------------------------------------------------------------------- /examples/simple_parent_bean/beans/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_parent_bean/beans/bus.js -------------------------------------------------------------------------------- /examples/simple_parent_bean/beans/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_parent_bean/beans/car.js -------------------------------------------------------------------------------- /examples/simple_parent_bean/beans/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_parent_bean/beans/engine.js -------------------------------------------------------------------------------- /examples/simple_parent_bean/beans/tank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_parent_bean/beans/tank.js -------------------------------------------------------------------------------- /examples/simple_parent_bean/beans/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_parent_bean/beans/wheel.js -------------------------------------------------------------------------------- /examples/simple_parent_bean/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_parent_bean/context.json -------------------------------------------------------------------------------- /examples/simple_prototype/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_prototype/app/car.js -------------------------------------------------------------------------------- /examples/simple_prototype/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/simple_prototype/context.json -------------------------------------------------------------------------------- /examples/state_file_scope_var/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/state_file_scope_var/app.js -------------------------------------------------------------------------------- /examples/state_file_scope_var/app/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/state_file_scope_var/app/car.js -------------------------------------------------------------------------------- /examples/state_file_scope_var/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/examples/state_file_scope_var/context.json -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/gruntfile.js -------------------------------------------------------------------------------- /history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/history.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/index.js -------------------------------------------------------------------------------- /lib/aop/advisor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/advisor.js -------------------------------------------------------------------------------- /lib/aop/aspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/aspect.js -------------------------------------------------------------------------------- /lib/aop/autoproxy/autoProxyCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/autoproxy/autoProxyCreator.js -------------------------------------------------------------------------------- /lib/aop/framework/advisedSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/framework/advisedSupport.js -------------------------------------------------------------------------------- /lib/aop/framework/dynamicAopProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/framework/dynamicAopProxy.js -------------------------------------------------------------------------------- /lib/aop/framework/dynamicMetaProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/framework/dynamicMetaProxy.js -------------------------------------------------------------------------------- /lib/aop/framework/proxyFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/framework/proxyFactory.js -------------------------------------------------------------------------------- /lib/aop/pointcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/pointcut.js -------------------------------------------------------------------------------- /lib/aop/targetSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/aop/targetSource.js -------------------------------------------------------------------------------- /lib/beans/beanFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/beanFactory.js -------------------------------------------------------------------------------- /lib/beans/moduleFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/moduleFactory.js -------------------------------------------------------------------------------- /lib/beans/singletonBeanFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/singletonBeanFactory.js -------------------------------------------------------------------------------- /lib/beans/support/beanDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/support/beanDefinition.js -------------------------------------------------------------------------------- /lib/beans/support/beanDefinitionVisitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/support/beanDefinitionVisitor.js -------------------------------------------------------------------------------- /lib/beans/support/beanModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/support/beanModule.js -------------------------------------------------------------------------------- /lib/beans/support/beanWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/support/beanWrapper.js -------------------------------------------------------------------------------- /lib/beans/support/placeHolderConfigurer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/support/placeHolderConfigurer.js -------------------------------------------------------------------------------- /lib/beans/support/placeHolderResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/beans/support/placeHolderResolver.js -------------------------------------------------------------------------------- /lib/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/bearcat.js -------------------------------------------------------------------------------- /lib/context/applicationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/context/applicationContext.js -------------------------------------------------------------------------------- /lib/model/constraints/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/index.js -------------------------------------------------------------------------------- /lib/model/constraints/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/max.js -------------------------------------------------------------------------------- /lib/model/constraints/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/min.js -------------------------------------------------------------------------------- /lib/model/constraints/notNull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/notNull.js -------------------------------------------------------------------------------- /lib/model/constraints/null.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/null.js -------------------------------------------------------------------------------- /lib/model/constraints/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/pattern.js -------------------------------------------------------------------------------- /lib/model/constraints/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/constraints/size.js -------------------------------------------------------------------------------- /lib/model/modelAttribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/modelAttribute.js -------------------------------------------------------------------------------- /lib/model/modelConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/modelConstraint.js -------------------------------------------------------------------------------- /lib/model/modelDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/modelDefinition.js -------------------------------------------------------------------------------- /lib/model/modelFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/modelFilter.js -------------------------------------------------------------------------------- /lib/model/modelKeyMapResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/modelKeyMapResolver.js -------------------------------------------------------------------------------- /lib/model/modelProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/model/modelProxy.js -------------------------------------------------------------------------------- /lib/resource/asyncScriptLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/resource/asyncScriptLoader.js -------------------------------------------------------------------------------- /lib/resource/bootStrapLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/resource/bootStrapLoader.js -------------------------------------------------------------------------------- /lib/resource/configLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/resource/configLoader.js -------------------------------------------------------------------------------- /lib/resource/metaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/resource/metaLoader.js -------------------------------------------------------------------------------- /lib/resource/propertiesLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/resource/propertiesLoader.js -------------------------------------------------------------------------------- /lib/resource/resourceLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/resource/resourceLoader.js -------------------------------------------------------------------------------- /lib/util/aopUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/aopUtil.js -------------------------------------------------------------------------------- /lib/util/beanUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/beanUtil.js -------------------------------------------------------------------------------- /lib/util/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/constant.js -------------------------------------------------------------------------------- /lib/util/fileUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/fileUtil.js -------------------------------------------------------------------------------- /lib/util/metaUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/metaUtil.js -------------------------------------------------------------------------------- /lib/util/modelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/modelUtil.js -------------------------------------------------------------------------------- /lib/util/requestUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/requestUtil.js -------------------------------------------------------------------------------- /lib/util/requireUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/requireUtil.js -------------------------------------------------------------------------------- /lib/util/scriptUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/scriptUtil.js -------------------------------------------------------------------------------- /lib/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/utils.js -------------------------------------------------------------------------------- /lib/util/validatorUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/lib/util/validatorUtil.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/package.json -------------------------------------------------------------------------------- /shim/builtins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/builtins.js -------------------------------------------------------------------------------- /shim/chokidar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/chokidar.js -------------------------------------------------------------------------------- /shim/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/logger.js -------------------------------------------------------------------------------- /shim/modules/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/modules/os.js -------------------------------------------------------------------------------- /shim/modules/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/modules/path.js -------------------------------------------------------------------------------- /shim/modules/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/modules/process.js -------------------------------------------------------------------------------- /shim/modules/support/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/modules/support/inherits.js -------------------------------------------------------------------------------- /shim/modules/support/isBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/modules/support/isBuffer.js -------------------------------------------------------------------------------- /shim/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/modules/util.js -------------------------------------------------------------------------------- /shim/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/shim/object.js -------------------------------------------------------------------------------- /test/aop/advisor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/advisor.js -------------------------------------------------------------------------------- /test/aop/aop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/aop.js -------------------------------------------------------------------------------- /test/aop/aop_annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/aop_annotation.js -------------------------------------------------------------------------------- /test/aop/aspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/aspect.js -------------------------------------------------------------------------------- /test/aop/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/debug.js -------------------------------------------------------------------------------- /test/aop/framework/dynamicAopProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/framework/dynamicAopProxy.js -------------------------------------------------------------------------------- /test/aop/framework/dynamicMetaProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/framework/dynamicMetaProxy.js -------------------------------------------------------------------------------- /test/aop/framework/proxyFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/framework/proxyFactory.js -------------------------------------------------------------------------------- /test/aop/pointcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/pointcut.js -------------------------------------------------------------------------------- /test/aop/targetSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/aop/targetSource.js -------------------------------------------------------------------------------- /test/beans/beanFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/beanFactory.js -------------------------------------------------------------------------------- /test/beans/singletonBeanFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/singletonBeanFactory.js -------------------------------------------------------------------------------- /test/beans/support/beanDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/support/beanDefinition.js -------------------------------------------------------------------------------- /test/beans/support/beanDefinitionVisitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/support/beanDefinitionVisitor.js -------------------------------------------------------------------------------- /test/beans/support/beanWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/support/beanWrapper.js -------------------------------------------------------------------------------- /test/beans/support/placeHolderConfigurer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/support/placeHolderConfigurer.js -------------------------------------------------------------------------------- /test/beans/support/placeHolderResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/beans/support/placeHolderResolver.js -------------------------------------------------------------------------------- /test/bearcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/bearcat.js -------------------------------------------------------------------------------- /test/browser/browserified_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/browser/browserified_tests.js -------------------------------------------------------------------------------- /test/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/browser/index.html -------------------------------------------------------------------------------- /test/context/applicationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/context/applicationContext.js -------------------------------------------------------------------------------- /test/context/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/context/debug.js -------------------------------------------------------------------------------- /test/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/debug.js -------------------------------------------------------------------------------- /test/mock-base/mock-annotation-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/mock-base/mock-annotation-function.js -------------------------------------------------------------------------------- /test/mock-base/mock-arg-props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/mock-base/mock-arg-props.js -------------------------------------------------------------------------------- /test/mock-base/mock-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/mock-base/mock-compare.js -------------------------------------------------------------------------------- /test/mock-base/mock-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/mock-base/mock-meta.js -------------------------------------------------------------------------------- /test/model/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/debug.js -------------------------------------------------------------------------------- /test/model/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/model.js -------------------------------------------------------------------------------- /test/model/modelAttribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/modelAttribute.js -------------------------------------------------------------------------------- /test/model/modelConstraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/modelConstraint.js -------------------------------------------------------------------------------- /test/model/modelDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/modelDefinition.js -------------------------------------------------------------------------------- /test/model/modelFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/modelFilter.js -------------------------------------------------------------------------------- /test/model/modelProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/model/modelProxy.js -------------------------------------------------------------------------------- /test/moduleA/beans/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/moduleA/beans/wheel.js -------------------------------------------------------------------------------- /test/moduleA/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/moduleA/context.json -------------------------------------------------------------------------------- /test/moduleA/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/moduleA/node_modules/moduleB/beans/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/moduleA/node_modules/moduleB/beans/bus.js -------------------------------------------------------------------------------- /test/moduleA/node_modules/moduleB/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/moduleA/node_modules/moduleB/context.json -------------------------------------------------------------------------------- /test/moduleA/node_modules/moduleB/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/moduleA/node_modules/moduleB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/moduleA/node_modules/moduleB/package.json -------------------------------------------------------------------------------- /test/moduleA/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/moduleA/package.json -------------------------------------------------------------------------------- /test/resource/configLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/resource/configLoader.js -------------------------------------------------------------------------------- /test/resource/metaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/resource/metaLoader.js -------------------------------------------------------------------------------- /test/resource/propertiesLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/resource/propertiesLoader.js -------------------------------------------------------------------------------- /test/resource/resourceLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/resource/resourceLoader.js -------------------------------------------------------------------------------- /test/util/aopUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/aopUtil.js -------------------------------------------------------------------------------- /test/util/beanUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/beanUtil.js -------------------------------------------------------------------------------- /test/util/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/debug.js -------------------------------------------------------------------------------- /test/util/fileUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/fileUtil.js -------------------------------------------------------------------------------- /test/util/metaUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/metaUtil.js -------------------------------------------------------------------------------- /test/util/modelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/modelUtil.js -------------------------------------------------------------------------------- /test/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/utils.js -------------------------------------------------------------------------------- /test/util/validatorUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearcatjs/bearcat/HEAD/test/util/validatorUtil.js --------------------------------------------------------------------------------