DefaultResolver#namespace

namespacepublic Defined in packages/ember-application/lib/system/resolver.js:112 This will be set to the Application instance when it is created.

Test.Adapter#exception()

exception (error) public Defined in packages/ember-testing/lib/adapters/adapter.js:38 Override this method with your testing framework's false assertion. This function is called whenever an exception occurs causing the testing promise to fail. QUnit example: exception: function(error) { ok(false, error); }; Parameters: error String The exception to be raised.

EventDispatcher#setupHandler()

setupHandler (rootElement, event, eventName) private Defined in packages/ember-views/lib/system/event_dispatcher.js:184 Registers an event listener on the rootElement. If the given event is triggered, the provided event handler will be triggered on the target view. If the target view does not implement the event handler, or if the handler returns false, the parent view will be called. The event will continue to bubble to each successive parent view until it reaches the top. Parameters: r

Route#_qp

_qpprivate Defined in packages/ember-routing/lib/system/route.js:144

ArrayProxy#objectAtContent()

objectAtContent (idx) Objectprivate Defined in packages/ember-runtime/lib/system/array_proxy.js:98 Should actually retrieve the object at the specified index from the content. You can override this method in subclasses to transform the content item to something new. This method will only be called if content is non-null. Parameters: idx Number The index to retrieve. Returns: Object the value or undefined if none found

DS.RESTSerializer#extractPolymorphicRelationship()

extractPolymorphicRelationship (relationshipType, relationshipHash, relationshipOptions) Object Inherited from DS.JSONSerializer but overwritten in addon/serializers/rest.js:786 You can use this method to customize how a polymorphic relationship should be extracted. Parameters: relationshipType Object relationshipHash Object relationshipOptions Object Returns: Object

AutoLocation#_getHashPath()

_getHashPathprivate Defined in packages/ember-routing/lib/location/auto_location.js:278

Route#render()

render (name, options) public Defined in packages/ember-routing/lib/system/route.js:1820 render is used to render a template into a region of another template (indicated by an {{outlet}}). render is used both during the entry phase of routing (via the renderTemplate hook) and later in response to user interaction. For example, given the following minimal router and templates: Router.map(function() { this.route('photos'); }); <!-- application.hbs --> <div class='something-in-the-

DS.String

DS.String Class Module: ember-data

Helper#compute()

compute (params, hash) public Defined in packages/ember-htmlbars/lib/helper.js:94 Available since 1.13.0 Override this function when writing a class-based helper. Parameters: params Array The positional arguments to the helper hash Object The named arguments to the helper