docs(api): update to alpha-33

This commit is contained in:
Naomi Black 2015-07-30 11:19:45 -07:00
parent e6406362e3
commit 5d2a873ba5
42 changed files with 100 additions and 90 deletions

View File

@ -3,7 +3,7 @@
h2 Attribute <span class="type">variable</span>
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L365-L365">angular2/src/core/annotations/decorators.ts (line 365)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L366-L366">angular2/src/core/annotations/decorators.ts (line 366)</a>
:markdown
<a href='Attribute-var.html'><code>Attribute</code></a> factory function.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L241-L292">angular2/src/core/annotations/decorators.ts (line 241)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L242-L293">angular2/src/core/annotations/decorators.ts (line 242)</a>
:markdown
<a href='Attribute-var.html'><code>Attribute</code></a> factory for creating annotations, decorators or DSL.

View File

@ -3,7 +3,7 @@
h2 Component <span class="type">variable</span>
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L349-L350">angular2/src/core/annotations/decorators.ts (line 349)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L350-L351">angular2/src/core/annotations/decorators.ts (line 350)</a>
:markdown
<a href='Component-var.html'><code>Component</code></a> factory function.

View File

@ -15,8 +15,7 @@ p.location-badge.
- creates a shadow DOM for the component.
- loads the selected template into the shadow DOM.
- creates all the injectable objects configured with `hostInjector` and `viewInjector`.
All template expressions and statements are then evaluated against the component instance.
For details on the `@View` annotation, see <a href='View-var.html'><code>View</code></a>.
@ -59,18 +58,18 @@ p.location-badge.
pre.prettyprint
code.
constructor({selector, properties, events, host, exportAs, lifecycle, hostInjector, viewInjector,
changeDetection = DEFAULT, compileChildren = true}?: {
selector?: string,
properties?: List&lt;string&gt;,
events?: List&lt;string&gt;,
host?: StringMap&lt;string, string&gt;,
lifecycle?: List&lt;LifecycleEvent&gt;,
hostInjector?: List&lt;any&gt;,
exportAs?: string,
compileChildren?: boolean,
viewInjector?: List&lt;any&gt;,
changeDetection?: string,
})
changeDetection = DEFAULT, compileChildren = true}?: {
selector?: string,
properties?: List&lt;string&gt;,
events?: List&lt;string&gt;,
host?: StringMap&lt;string, string&gt;,
lifecycle?: List&lt;LifecycleEvent&gt;,
hostInjector?: List&lt;any&gt;,
exportAs?: string,
compileChildren?: boolean,
viewInjector?: List&lt;any&gt;,
changeDetection?: string,
})
:markdown

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L18-L37">angular2/src/core/annotations/decorators.ts (line 18)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L19-L38">angular2/src/core/annotations/decorators.ts (line 19)</a>
:markdown
Interface for the <a href='Component-var.html'><code>Component</code></a> decorator function.
@ -18,13 +18,13 @@ p.location-badge.
pre.prettyprint
code.
View(obj: {
templateUrl?: string,
template?: string,
directives?: List&lt;Type | any | List&lt;any&gt;&gt;,
renderer?: string,
styles?: List&lt;string&gt;,
styleUrls?: List&lt;string&gt;,
})
templateUrl?: string,
template?: string,
directives?: List&lt;Type | any | List&lt;any&gt;&gt;,
renderer?: string,
styles?: List&lt;string&gt;,
styleUrls?: List&lt;string&gt;,
})
:markdown
Chain <a href='View-var.html'><code>View</code></a> annotation.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L109-L179">angular2/src/core/annotations/decorators.ts (line 109)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L110-L180">angular2/src/core/annotations/decorators.ts (line 110)</a>
:markdown
<a href='ComponentAnnotation-class.html'><code>ComponentAnnotation</code></a> factory for creating annotations, decorators or DSL.

View File

@ -3,7 +3,7 @@
h2 Directive <span class="type">variable</span>
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L354-L354">angular2/src/core/annotations/decorators.ts (line 354)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L355-L355">angular2/src/core/annotations/decorators.ts (line 355)</a>
:markdown
<a href='Directive-var.html'><code>Directive</code></a> factory function.

View File

@ -401,18 +401,18 @@ p.location-badge.
pre.prettyprint
code.
constructor({
selector, properties, events, host, lifecycle, hostInjector, exportAs,
compileChildren = true,
}?: {
selector?: string,
properties?: List&lt;string&gt;,
events?: List&lt;string&gt;,
host?: StringMap&lt;string, string&gt;,
lifecycle?: List&lt;LifecycleEvent&gt;,
hostInjector?: List&lt;any&gt;,
exportAs?: string,
compileChildren?: boolean,
})
selector, properties, events, host, lifecycle, hostInjector, exportAs,
compileChildren = true,
}?: {
selector?: string,
properties?: List&lt;string&gt;,
events?: List&lt;string&gt;,
host?: StringMap&lt;string, string&gt;,
lifecycle?: List&lt;LifecycleEvent&gt;,
hostInjector?: List&lt;any&gt;,
exportAs?: string,
compileChildren?: boolean,
})
:markdown

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L11-L18">angular2/src/core/annotations/decorators.ts (line 11)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L12-L19">angular2/src/core/annotations/decorators.ts (line 12)</a>
:markdown
Interface for the <a href='Directive-var.html'><code>Directive</code></a> decorator function.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L56-L109">angular2/src/core/annotations/decorators.ts (line 56)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L57-L110">angular2/src/core/annotations/decorators.ts (line 57)</a>
:markdown
<a href='Directive-var.html'><code>Directive</code></a> factory for creating annotations, decorators or DSL.

View File

@ -3,7 +3,7 @@
h2 Query <span class="type">variable</span>
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L370-L370">angular2/src/core/annotations/decorators.ts (line 370)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L371-L371">angular2/src/core/annotations/decorators.ts (line 371)</a>
:markdown
<a href='Query-var.html'><code>Query</code></a> factory function.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L292-L343">angular2/src/core/annotations/decorators.ts (line 292)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L293-L344">angular2/src/core/annotations/decorators.ts (line 293)</a>
:markdown
<a href='Query-var.html'><code>Query</code></a> factory for creating annotations, decorators or DSL.

View File

@ -3,7 +3,7 @@
h2 View <span class="type">variable</span>
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L359-L360">angular2/src/core/annotations/decorators.ts (line 359)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L360-L361">angular2/src/core/annotations/decorators.ts (line 360)</a>
:markdown
<a href='View-var.html'><code>View</code></a> factory function.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations_impl/view.ts#L1-L109">angular2/src/core/annotations_impl/view.ts (line 1)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations_impl/view.ts#L4-L112">angular2/src/core/annotations_impl/view.ts (line 4)</a>
:markdown
Declares the available HTML templates for an application.
@ -53,14 +53,14 @@ p.location-badge.
pre.prettyprint
code.
constructor({templateUrl, template, directives, renderer, styles, styleUrls}?: {
templateUrl?: string,
template?: string,
directives?: List&lt;Type | any | List&lt;any&gt;&gt;,
renderer?: string,
styles?: List&lt;string&gt;,
styleUrls?: List&lt;string&gt;,
})
constructor({templateUrl, template, directives, encapsulation, styles, styleUrls}?: {
templateUrl?: string,
template?: string,
directives?: List&lt;Type | any | List&lt;any&gt;&gt;,
encapsulation?: ViewEncapsulation,
styles?: List&lt;string&gt;,
styleUrls?: List&lt;string&gt;,
})
:markdown
@ -158,13 +158,13 @@ p.location-badge.
.l-sub-section
h3 renderer
h3 encapsulation
:markdown
Specify a custom renderer for this View.
If this is set, neither `template`, `templateUrl`, `styles`, `styleUrls` nor `directives` are
used.
Specify how the template and the styles should be encapsulated.
The default is <a href='ViewEncapsulation-enum.html#EMULATED'><code>ViewEncapsulation</code></a> if the view has styles,
otherwise <a href='ViewEncapsulation-enum.html#NONE'><code>ViewEncapsulation</code></a>.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L37-L56">angular2/src/core/annotations/decorators.ts (line 37)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L38-L57">angular2/src/core/annotations/decorators.ts (line 38)</a>
:markdown
Interface for the <a href='View-var.html'><code>View</code></a> decorator function.
@ -18,13 +18,13 @@ p.location-badge.
pre.prettyprint
code.
View(obj: {
templateUrl?: string,
template?: string,
directives?: List&lt;Type | any | List&lt;any&gt;&gt;,
renderer?: string,
styles?: List&lt;string&gt;,
styleUrls?: List&lt;string&gt;,
})
templateUrl?: string,
template?: string,
directives?: List&lt;Type | any | List&lt;any&gt;&gt;,
renderer?: string,
styles?: List&lt;string&gt;,
styleUrls?: List&lt;string&gt;,
})
:markdown
Chain <a href='View-var.html'><code>View</code></a> annotation.

View File

@ -0,0 +1,7 @@
<h1>angular2/annotations/ViewEncapsulation</h1>
<h2>(enum)</h2>
<div>
<p>How the template and styles of a view should be encapsulated.</p>
</div>

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L179-L241">angular2/src/core/annotations/decorators.ts (line 179)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L180-L242">angular2/src/core/annotations/decorators.ts (line 180)</a>
:markdown
<a href='ViewAnnotation-class.html'><code>ViewAnnotation</code></a> factory for creating annotations, decorators or DSL.

View File

@ -3,7 +3,7 @@
h2 ViewQuery <span class="type">variable</span>
p.location-badge.
exported from <a href='../annotations'>angular2/annotations</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L376-L376">angular2/src/core/annotations/decorators.ts (line 376)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/annotations/decorators.ts#L377-L377">angular2/src/core/annotations/decorators.ts (line 377)</a>
:markdown
<a href='ViewQuery-var.html'><code>ViewQuery</code></a> factory function.

View File

@ -20,6 +20,10 @@
"title" : "ViewAnnotation Class"
},
"ViewEncapsulation-enum" : {
"title" : "ViewEncapsulation Enum"
},
"QueryAnnotation-class" : {
"title" : "QueryAnnotation Class"
},

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../core'>angular2/core</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/application_common.ts#L309-L354">angular2/src/core/application_common.ts (line 309)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/application_common.ts#L323-L368">angular2/src/core/application_common.ts (line 323)</a>
:markdown
Represents a Angular's representation of an Application.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../core'>angular2/core</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/compiler/compiler.ts#L60-L344">angular2/src/core/compiler/compiler.ts (line 60)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/core/compiler/compiler.ts#L60-L345">angular2/src/core/compiler/compiler.ts (line 60)</a>
:markdown
## URL Resolution

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../core'>angular2/core</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/render/api.ts#L354-L372">angular2/src/render/api.ts (line 354)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/render/api.ts#L377-L395">angular2/src/render/api.ts (line 377)</a>
:markdown
Abstract reference to the element which can be marshaled across web-worker boundary.

View File

@ -38,7 +38,7 @@ p.location-badge.
pre.prettyprint
code.
constructor(token: any, {toClass, toValue, toAlias, toFactory, deps}:
{toClass?: Type, toValue?: any, toAlias?: any, toFactory?: Function, deps?: List&lt;any&gt;})
{toClass?: Type, toValue?: any, toAlias?: any, toFactory?: Function, deps?: List&lt;any&gt;})
:markdown

View File

@ -35,7 +35,7 @@ p.location-badge.
pre.prettyprint
code.
updateValue(value: any, {onlySelf, emitEvent, emitModelToViewChange}?:
{onlySelf?: boolean, emitEvent?: boolean, emitModelToViewChange?: boolean})
{onlySelf?: boolean, emitEvent?: boolean, emitModelToViewChange?: boolean})
:markdown

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../http'>angular2/http</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/http/backends/xhr_backend.ts#L60-L94">angular2/src/http/backends/xhr_backend.ts (line 60)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/http/backends/xhr_backend.ts#L62-L96">angular2/src/http/backends/xhr_backend.ts (line 62)</a>
:markdown
Creates <a href='XHRConnection-class.html'><code>XHRConnection</code></a> instances.

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../http'>angular2/http</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/http/backends/xhr_backend.ts#L9-L60">angular2/src/http/backends/xhr_backend.ts (line 9)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/http/backends/xhr_backend.ts#L9-L62">angular2/src/http/backends/xhr_backend.ts (line 9)</a>
:markdown
Creates connections using `XMLHttpRequest`. Given a fully-qualified

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L35-L43">angular2/src/test_lib/test_lib.ts (line 35)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L36-L44">angular2/src/test_lib/test_lib.ts (line 36)</a>
:markdown

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_injector.ts#L181-L199">angular2/src/test_lib/test_injector.ts (line 181)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_injector.ts#L184-L202">angular2/src/test_lib/test_injector.ts (line 184)</a>
:markdown

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L300-L311">angular2/src/test_lib/test_lib.ts (line 300)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L301-L312">angular2/src/test_lib/test_lib.ts (line 301)</a>
:markdown

View File

@ -3,7 +3,7 @@
h2 IS_DARTIUM <span class="type">variable</span>
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L35-L35">angular2/src/test_lib/test_lib.ts (line 35)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L36-L36">angular2/src/test_lib/test_lib.ts (line 36)</a>
:markdown

View File

@ -1,7 +1,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L311-L365">angular2/src/test_lib/test_lib.ts (line 311)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L312-L366">angular2/src/test_lib/test_lib.ts (line 312)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L96-L110">angular2/src/test_lib/test_lib.ts (line 96)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L97-L111">angular2/src/test_lib/test_lib.ts (line 97)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L110-L130">angular2/src/test_lib/test_lib.ts (line 110)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L111-L131">angular2/src/test_lib/test_lib.ts (line 111)</a>
:markdown
Allows overriding default bindings defined in test_injector.js.

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_injector.ts#L143-L148">angular2/src/test_lib/test_injector.ts (line 143)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_injector.ts#L146-L151">angular2/src/test_lib/test_injector.ts (line 146)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L88-L92">angular2/src/test_lib/test_lib.ts (line 88)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L89-L93">angular2/src/test_lib/test_lib.ts (line 89)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L84-L88">angular2/src/test_lib/test_lib.ts (line 84)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L85-L89">angular2/src/test_lib/test_lib.ts (line 85)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L168-L172">angular2/src/test_lib/test_lib.ts (line 168)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L169-L173">angular2/src/test_lib/test_lib.ts (line 169)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_injector.ts#L148-L181">angular2/src/test_lib/test_injector.ts (line 148)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_injector.ts#L151-L184">angular2/src/test_lib/test_injector.ts (line 151)</a>
:markdown
Allows injecting dependencies in `beforeEach()` and `it()`.

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L394-L398">angular2/src/test_lib/test_lib.ts (line 394)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L395-L399">angular2/src/test_lib/test_lib.ts (line 395)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L160-L164">angular2/src/test_lib/test_lib.ts (line 160)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L161-L165">angular2/src/test_lib/test_lib.ts (line 161)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L92-L96">angular2/src/test_lib/test_lib.ts (line 92)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L93-L97">angular2/src/test_lib/test_lib.ts (line 93)</a>
:markdown

View File

@ -10,7 +10,7 @@
p.location-badge.
exported from <a href='../test'>angular2/test</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L164-L168">angular2/src/test_lib/test_lib.ts (line 164)</a>
defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.32/modules/angular2/src/test_lib/test_lib.ts#L165-L169">angular2/src/test_lib/test_lib.ts (line 165)</a>
:markdown