gitextract_nbr74owg/ ├── .codoopts ├── .gitignore ├── .travis.yml ├── Gruntfile.coffee ├── LICENSE.md ├── README.md ├── bin/ │ └── codo ├── lib/ │ ├── _entities.coffee │ ├── _meta.coffee │ ├── _tools.coffee │ ├── codo.coffee │ ├── command.coffee │ ├── documentation.coffee │ ├── entities/ │ │ ├── class.coffee │ │ ├── extra.coffee │ │ ├── file.coffee │ │ ├── method.coffee │ │ ├── mixin.coffee │ │ ├── property.coffee │ │ └── variable.coffee │ ├── entity.coffee │ ├── environment.coffee │ ├── meta/ │ │ ├── method.coffee │ │ └── parameter.coffee │ ├── tools/ │ │ ├── markdown.coffee │ │ └── referencer.coffee │ └── traverser.coffee ├── package.json ├── spec/ │ ├── _templates/ │ │ ├── angular/ │ │ │ ├── angular-with-new.coffee │ │ │ ├── angular-with-new.json │ │ │ ├── angular.coffee │ │ │ └── angular.json │ │ ├── classes/ │ │ │ ├── class_description_markdown.coffee │ │ │ ├── class_description_markdown.json │ │ │ ├── class_documentation.coffee │ │ │ ├── class_documentation.json │ │ │ ├── class_extends.coffee │ │ │ ├── class_extends.json │ │ │ ├── empty_class.coffee │ │ │ ├── empty_class.json │ │ │ ├── export_class.coffee │ │ │ ├── export_class.json │ │ │ ├── global_class.coffee │ │ │ ├── global_class.json │ │ │ ├── inner_class.coffee │ │ │ ├── inner_class.json │ │ │ ├── namespaced_class.coffee │ │ │ ├── namespaced_class.json │ │ │ ├── simple_class.coffee │ │ │ └── simple_class.json │ │ ├── complicateds/ │ │ │ ├── methods.coffee │ │ │ └── variables.coffee │ │ ├── environment/ │ │ │ ├── class.coffee │ │ │ ├── mixin.coffee │ │ │ └── result.json │ │ ├── example/ │ │ │ ├── CHANGELOG │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src/ │ │ │ ├── angry_animal.coffee │ │ │ ├── animal.coffee │ │ │ ├── lion.coffee │ │ │ ├── over_documented_class.coffee │ │ │ └── over_documented_mixin.coffee │ │ ├── extras/ │ │ │ ├── README │ │ │ └── README.md │ │ ├── files/ │ │ │ ├── non_class_file.coffee │ │ │ └── non_class_file.json │ │ ├── methods/ │ │ │ ├── assigned_parameters.coffee │ │ │ ├── assigned_parameters.json │ │ │ ├── class_methods.coffee │ │ │ ├── class_methods.json │ │ │ ├── curly_method_documentation.coffee │ │ │ ├── curly_method_documentation.json │ │ │ ├── dynamic_methods.coffee │ │ │ ├── dynamic_methods.json │ │ │ ├── instance_methods.coffee │ │ │ ├── instance_methods.json │ │ │ ├── method_documentation.coffee │ │ │ ├── method_documentation.json │ │ │ ├── method_events.coffee │ │ │ ├── method_events.json │ │ │ ├── method_example.coffee │ │ │ ├── method_example.json │ │ │ ├── named_parameters.coffee │ │ │ ├── named_parameters.json │ │ │ ├── overload_method.coffee │ │ │ └── overload_method.json │ │ ├── mixins/ │ │ │ ├── concern.coffee │ │ │ ├── concern.json │ │ │ ├── extend_mixin.coffee │ │ │ ├── extend_mixin.json │ │ │ ├── include_mixin.coffee │ │ │ ├── include_mixin.json │ │ │ ├── missing_mixins.coffee │ │ │ ├── missing_mixins.json │ │ │ ├── mixin_documentation.coffee │ │ │ ├── mixin_documentation.json │ │ │ ├── mixin_methods.coffee │ │ │ └── mixin_methods.json │ │ ├── properties/ │ │ │ ├── properties.coffee │ │ │ └── properties.json │ │ └── variables/ │ │ ├── class_variables.coffee │ │ ├── class_variables.json │ │ ├── constant_variables.coffee │ │ ├── constant_variables.json │ │ ├── instance_variables.coffee │ │ └── instance_variables.json │ ├── lib/ │ │ ├── api_spec.coffee │ │ ├── codo_spec.coffee │ │ ├── entities/ │ │ │ ├── class_spec.coffee │ │ │ └── mixin_spec.coffee │ │ ├── environment_spec.coffee │ │ ├── meta/ │ │ │ ├── method_spec.coffee │ │ │ └── parameter_spec.coffee │ │ └── tools/ │ │ └── markdown_spec.coffee │ └── themes/ │ └── default/ │ └── lib/ │ ├── templater_spec.coffee │ ├── theme_spec.coffee │ └── tree_builder_spec.coffee └── themes/ └── default/ ├── assets/ │ ├── javascript/ │ │ ├── application.js │ │ ├── codo.coffee │ │ ├── frames.coffee │ │ ├── fuzzy.coffee │ │ ├── keys.coffee │ │ ├── sidebar.coffee │ │ ├── toc.coffee │ │ └── vendor/ │ │ ├── fuzzy.coffee │ │ ├── highlight.coffeescript.js │ │ ├── highlight.js │ │ ├── jquery.js │ │ ├── keymaster.js │ │ └── underscore.js │ └── stylesheets/ │ ├── alphabetical_index.styl │ ├── application.styl │ ├── base.styl │ ├── class.styl │ ├── footer.styl │ ├── header.styl │ ├── lists.styl │ ├── toc.styl │ └── vendor/ │ └── highlight.css ├── lib/ │ ├── _theme.coffee │ ├── templater.coffee │ ├── theme.coffee │ └── tree_builder.coffee └── templates/ ├── alphabetical_index.hamlc ├── class.hamlc ├── class_list.hamlc ├── extra.hamlc ├── extra_list.hamlc ├── file.hamlc ├── file_list.hamlc ├── frames.hamlc ├── layout/ │ ├── footer.hamlc │ ├── header.hamlc │ └── intro.hamlc ├── method_list.hamlc ├── mixin.hamlc ├── mixin_list.hamlc └── partials/ ├── documentation.hamlc ├── list_nav.hamlc ├── method_list.hamlc ├── method_signature.hamlc ├── method_summary.hamlc ├── type_link.hamlc └── variable_list.hamlc