From 5d2a873ba54d0b377dddcbb95d317205c695d2c8 Mon Sep 17 00:00:00 2001 From: Naomi Black Date: Thu, 30 Jul 2015 11:19:45 -0700 Subject: [PATCH] docs(api): update to alpha-33 --- .../latest/api/annotations/Attribute-var.jade | 2 +- .../AttributeFactory-interface.jade | 2 +- .../latest/api/annotations/Component-var.jade | 2 +- .../ComponentAnnotation-class.jade | 27 +++++++++---------- .../ComponentDecorator-interface.jade | 16 +++++------ .../ComponentFactory-interface.jade | 2 +- .../latest/api/annotations/Directive-var.jade | 2 +- .../DirectiveAnnotation-class.jade | 24 ++++++++--------- .../DirectiveDecorator-interface.jade | 2 +- .../DirectiveFactory-interface.jade | 2 +- .../js/latest/api/annotations/Query-var.jade | 2 +- .../annotations/QueryFactory-interface.jade | 2 +- .../js/latest/api/annotations/View-var.jade | 2 +- .../api/annotations/ViewAnnotation-class.jade | 26 +++++++++--------- .../annotations/ViewDecorator-interface.jade | 16 +++++------ .../annotations/ViewEncapsulation-enum.jade | 7 +++++ .../annotations/ViewFactory-interface.jade | 2 +- .../latest/api/annotations/ViewQuery-var.jade | 2 +- .../docs/js/latest/api/annotations/_data.json | 4 +++ .../latest/api/core/ApplicationRef-class.jade | 2 +- .../js/latest/api/core/Compiler-class.jade | 2 +- .../api/core/RenderElementRef-interface.jade | 2 +- .../docs/js/latest/api/di/Binding-class.jade | 2 +- .../js/latest/api/forms/Control-class.jade | 2 +- .../js/latest/api/http/XHRBackend-class.jade | 2 +- .../latest/api/http/XHRConnection-class.jade | 2 +- .../api/test/AsyncTestCompleter-class.jade | 2 +- .../test/FunctionWithParamTokens-class.jade | 2 +- .../test/GuinessCompatibleSpy-interface.jade | 2 +- .../js/latest/api/test/IS_DARTIUM-var.jade | 2 +- .../js/latest/api/test/SpyObject-class.jade | 2 +- .../latest/api/test/beforeEach-function.jade | 2 +- .../api/test/beforeEachBindings-function.jade | 2 +- .../api/test/createTestInjector-function.jade | 2 +- .../latest/api/test/ddescribe-function.jade | 2 +- .../js/latest/api/test/describe-function.jade | 2 +- .../docs/js/latest/api/test/iit-function.jade | 2 +- .../js/latest/api/test/inject-function.jade | 2 +- .../api/test/isInInnerZone-function.jade | 2 +- .../docs/js/latest/api/test/it-function.jade | 2 +- .../latest/api/test/xdescribe-function.jade | 2 +- .../docs/js/latest/api/test/xit-function.jade | 2 +- 42 files changed, 100 insertions(+), 90 deletions(-) create mode 100644 public/docs/js/latest/api/annotations/ViewEncapsulation-enum.jade diff --git a/public/docs/js/latest/api/annotations/Attribute-var.jade b/public/docs/js/latest/api/annotations/Attribute-var.jade index 4947c95245..350ea843b0 100644 --- a/public/docs/js/latest/api/annotations/Attribute-var.jade +++ b/public/docs/js/latest/api/annotations/Attribute-var.jade @@ -3,7 +3,7 @@ h2 Attribute variable p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 365) + defined in angular2/src/core/annotations/decorators.ts (line 366) :markdown Attribute factory function. diff --git a/public/docs/js/latest/api/annotations/AttributeFactory-interface.jade b/public/docs/js/latest/api/annotations/AttributeFactory-interface.jade index edc32790d8..a66f72befb 100644 --- a/public/docs/js/latest/api/annotations/AttributeFactory-interface.jade +++ b/public/docs/js/latest/api/annotations/AttributeFactory-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 241) + defined in angular2/src/core/annotations/decorators.ts (line 242) :markdown Attribute factory for creating annotations, decorators or DSL. diff --git a/public/docs/js/latest/api/annotations/Component-var.jade b/public/docs/js/latest/api/annotations/Component-var.jade index c16421b4f5..b50d62444e 100644 --- a/public/docs/js/latest/api/annotations/Component-var.jade +++ b/public/docs/js/latest/api/annotations/Component-var.jade @@ -3,7 +3,7 @@ h2 Component variable p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 349) + defined in angular2/src/core/annotations/decorators.ts (line 350) :markdown Component factory function. diff --git a/public/docs/js/latest/api/annotations/ComponentAnnotation-class.jade b/public/docs/js/latest/api/annotations/ComponentAnnotation-class.jade index f0689d39a3..b328aa08f6 100644 --- a/public/docs/js/latest/api/annotations/ComponentAnnotation-class.jade +++ b/public/docs/js/latest/api/annotations/ComponentAnnotation-class.jade @@ -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 View. @@ -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<string>, - events?: List<string>, - host?: StringMap<string, string>, - lifecycle?: List<LifecycleEvent>, - hostInjector?: List<any>, - exportAs?: string, - compileChildren?: boolean, - viewInjector?: List<any>, - changeDetection?: string, - }) + changeDetection = DEFAULT, compileChildren = true}?: { + selector?: string, + properties?: List<string>, + events?: List<string>, + host?: StringMap<string, string>, + lifecycle?: List<LifecycleEvent>, + hostInjector?: List<any>, + exportAs?: string, + compileChildren?: boolean, + viewInjector?: List<any>, + changeDetection?: string, + }) :markdown diff --git a/public/docs/js/latest/api/annotations/ComponentDecorator-interface.jade b/public/docs/js/latest/api/annotations/ComponentDecorator-interface.jade index d4c185ec68..f50480762c 100644 --- a/public/docs/js/latest/api/annotations/ComponentDecorator-interface.jade +++ b/public/docs/js/latest/api/annotations/ComponentDecorator-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 18) + defined in angular2/src/core/annotations/decorators.ts (line 19) :markdown Interface for the Component decorator function. @@ -18,13 +18,13 @@ p.location-badge. pre.prettyprint code. View(obj: { - templateUrl?: string, - template?: string, - directives?: List<Type | any | List<any>>, - renderer?: string, - styles?: List<string>, - styleUrls?: List<string>, - }) + templateUrl?: string, + template?: string, + directives?: List<Type | any | List<any>>, + renderer?: string, + styles?: List<string>, + styleUrls?: List<string>, + }) :markdown Chain View annotation. diff --git a/public/docs/js/latest/api/annotations/ComponentFactory-interface.jade b/public/docs/js/latest/api/annotations/ComponentFactory-interface.jade index 7a901782e7..32d78581b7 100644 --- a/public/docs/js/latest/api/annotations/ComponentFactory-interface.jade +++ b/public/docs/js/latest/api/annotations/ComponentFactory-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 109) + defined in angular2/src/core/annotations/decorators.ts (line 110) :markdown ComponentAnnotation factory for creating annotations, decorators or DSL. diff --git a/public/docs/js/latest/api/annotations/Directive-var.jade b/public/docs/js/latest/api/annotations/Directive-var.jade index 7fb90d3952..8c3e86b410 100644 --- a/public/docs/js/latest/api/annotations/Directive-var.jade +++ b/public/docs/js/latest/api/annotations/Directive-var.jade @@ -3,7 +3,7 @@ h2 Directive variable p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 354) + defined in angular2/src/core/annotations/decorators.ts (line 355) :markdown Directive factory function. diff --git a/public/docs/js/latest/api/annotations/DirectiveAnnotation-class.jade b/public/docs/js/latest/api/annotations/DirectiveAnnotation-class.jade index 06777004f5..fec3db925b 100644 --- a/public/docs/js/latest/api/annotations/DirectiveAnnotation-class.jade +++ b/public/docs/js/latest/api/annotations/DirectiveAnnotation-class.jade @@ -401,18 +401,18 @@ p.location-badge. pre.prettyprint code. constructor({ - selector, properties, events, host, lifecycle, hostInjector, exportAs, - compileChildren = true, - }?: { - selector?: string, - properties?: List<string>, - events?: List<string>, - host?: StringMap<string, string>, - lifecycle?: List<LifecycleEvent>, - hostInjector?: List<any>, - exportAs?: string, - compileChildren?: boolean, - }) + selector, properties, events, host, lifecycle, hostInjector, exportAs, + compileChildren = true, + }?: { + selector?: string, + properties?: List<string>, + events?: List<string>, + host?: StringMap<string, string>, + lifecycle?: List<LifecycleEvent>, + hostInjector?: List<any>, + exportAs?: string, + compileChildren?: boolean, + }) :markdown diff --git a/public/docs/js/latest/api/annotations/DirectiveDecorator-interface.jade b/public/docs/js/latest/api/annotations/DirectiveDecorator-interface.jade index f3b39b86c4..67c85d3d50 100644 --- a/public/docs/js/latest/api/annotations/DirectiveDecorator-interface.jade +++ b/public/docs/js/latest/api/annotations/DirectiveDecorator-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 11) + defined in angular2/src/core/annotations/decorators.ts (line 12) :markdown Interface for the Directive decorator function. diff --git a/public/docs/js/latest/api/annotations/DirectiveFactory-interface.jade b/public/docs/js/latest/api/annotations/DirectiveFactory-interface.jade index d4d6d141a7..a2e2ea66ec 100644 --- a/public/docs/js/latest/api/annotations/DirectiveFactory-interface.jade +++ b/public/docs/js/latest/api/annotations/DirectiveFactory-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 56) + defined in angular2/src/core/annotations/decorators.ts (line 57) :markdown Directive factory for creating annotations, decorators or DSL. diff --git a/public/docs/js/latest/api/annotations/Query-var.jade b/public/docs/js/latest/api/annotations/Query-var.jade index a1c26f6336..1c49e29e74 100644 --- a/public/docs/js/latest/api/annotations/Query-var.jade +++ b/public/docs/js/latest/api/annotations/Query-var.jade @@ -3,7 +3,7 @@ h2 Query variable p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 370) + defined in angular2/src/core/annotations/decorators.ts (line 371) :markdown Query factory function. diff --git a/public/docs/js/latest/api/annotations/QueryFactory-interface.jade b/public/docs/js/latest/api/annotations/QueryFactory-interface.jade index 879a6bcd12..8531d693a6 100644 --- a/public/docs/js/latest/api/annotations/QueryFactory-interface.jade +++ b/public/docs/js/latest/api/annotations/QueryFactory-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 292) + defined in angular2/src/core/annotations/decorators.ts (line 293) :markdown Query factory for creating annotations, decorators or DSL. diff --git a/public/docs/js/latest/api/annotations/View-var.jade b/public/docs/js/latest/api/annotations/View-var.jade index a53361e03a..b370f50113 100644 --- a/public/docs/js/latest/api/annotations/View-var.jade +++ b/public/docs/js/latest/api/annotations/View-var.jade @@ -3,7 +3,7 @@ h2 View variable p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 359) + defined in angular2/src/core/annotations/decorators.ts (line 360) :markdown View factory function. diff --git a/public/docs/js/latest/api/annotations/ViewAnnotation-class.jade b/public/docs/js/latest/api/annotations/ViewAnnotation-class.jade index ce280ee0e1..7842b62eb4 100644 --- a/public/docs/js/latest/api/annotations/ViewAnnotation-class.jade +++ b/public/docs/js/latest/api/annotations/ViewAnnotation-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations_impl/view.ts (line 1) + defined in angular2/src/core/annotations_impl/view.ts (line 4) :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<Type | any | List<any>>, - renderer?: string, - styles?: List<string>, - styleUrls?: List<string>, - }) + constructor({templateUrl, template, directives, encapsulation, styles, styleUrls}?: { + templateUrl?: string, + template?: string, + directives?: List<Type | any | List<any>>, + encapsulation?: ViewEncapsulation, + styles?: List<string>, + styleUrls?: List<string>, + }) :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 ViewEncapsulation if the view has styles, + otherwise ViewEncapsulation. diff --git a/public/docs/js/latest/api/annotations/ViewDecorator-interface.jade b/public/docs/js/latest/api/annotations/ViewDecorator-interface.jade index 03d90e9cc3..34d7f01821 100644 --- a/public/docs/js/latest/api/annotations/ViewDecorator-interface.jade +++ b/public/docs/js/latest/api/annotations/ViewDecorator-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 37) + defined in angular2/src/core/annotations/decorators.ts (line 38) :markdown Interface for the View decorator function. @@ -18,13 +18,13 @@ p.location-badge. pre.prettyprint code. View(obj: { - templateUrl?: string, - template?: string, - directives?: List<Type | any | List<any>>, - renderer?: string, - styles?: List<string>, - styleUrls?: List<string>, - }) + templateUrl?: string, + template?: string, + directives?: List<Type | any | List<any>>, + renderer?: string, + styles?: List<string>, + styleUrls?: List<string>, + }) :markdown Chain View annotation. diff --git a/public/docs/js/latest/api/annotations/ViewEncapsulation-enum.jade b/public/docs/js/latest/api/annotations/ViewEncapsulation-enum.jade new file mode 100644 index 0000000000..ccc46905d8 --- /dev/null +++ b/public/docs/js/latest/api/annotations/ViewEncapsulation-enum.jade @@ -0,0 +1,7 @@ + +

angular2/annotations/ViewEncapsulation

+

(enum)

+
+

How the template and styles of a view should be encapsulated.

+ +
diff --git a/public/docs/js/latest/api/annotations/ViewFactory-interface.jade b/public/docs/js/latest/api/annotations/ViewFactory-interface.jade index 12c1ddd346..23d59b7256 100644 --- a/public/docs/js/latest/api/annotations/ViewFactory-interface.jade +++ b/public/docs/js/latest/api/annotations/ViewFactory-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 179) + defined in angular2/src/core/annotations/decorators.ts (line 180) :markdown ViewAnnotation factory for creating annotations, decorators or DSL. diff --git a/public/docs/js/latest/api/annotations/ViewQuery-var.jade b/public/docs/js/latest/api/annotations/ViewQuery-var.jade index 2003d3c197..56379714f9 100644 --- a/public/docs/js/latest/api/annotations/ViewQuery-var.jade +++ b/public/docs/js/latest/api/annotations/ViewQuery-var.jade @@ -3,7 +3,7 @@ h2 ViewQuery variable p.location-badge. exported from angular2/annotations - defined in angular2/src/core/annotations/decorators.ts (line 376) + defined in angular2/src/core/annotations/decorators.ts (line 377) :markdown ViewQuery factory function. diff --git a/public/docs/js/latest/api/annotations/_data.json b/public/docs/js/latest/api/annotations/_data.json index 900312ed63..c6a7598761 100644 --- a/public/docs/js/latest/api/annotations/_data.json +++ b/public/docs/js/latest/api/annotations/_data.json @@ -20,6 +20,10 @@ "title" : "ViewAnnotation Class" }, + "ViewEncapsulation-enum" : { + "title" : "ViewEncapsulation Enum" + }, + "QueryAnnotation-class" : { "title" : "QueryAnnotation Class" }, diff --git a/public/docs/js/latest/api/core/ApplicationRef-class.jade b/public/docs/js/latest/api/core/ApplicationRef-class.jade index 42f84f2917..19cb3f2613 100644 --- a/public/docs/js/latest/api/core/ApplicationRef-class.jade +++ b/public/docs/js/latest/api/core/ApplicationRef-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/core - defined in angular2/src/core/application_common.ts (line 309) + defined in angular2/src/core/application_common.ts (line 323) :markdown Represents a Angular's representation of an Application. diff --git a/public/docs/js/latest/api/core/Compiler-class.jade b/public/docs/js/latest/api/core/Compiler-class.jade index 2a8bcd12b2..1e5f4e297d 100644 --- a/public/docs/js/latest/api/core/Compiler-class.jade +++ b/public/docs/js/latest/api/core/Compiler-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/core - defined in angular2/src/core/compiler/compiler.ts (line 60) + defined in angular2/src/core/compiler/compiler.ts (line 60) :markdown ## URL Resolution diff --git a/public/docs/js/latest/api/core/RenderElementRef-interface.jade b/public/docs/js/latest/api/core/RenderElementRef-interface.jade index dc83b65cdc..077454775a 100644 --- a/public/docs/js/latest/api/core/RenderElementRef-interface.jade +++ b/public/docs/js/latest/api/core/RenderElementRef-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/core - defined in angular2/src/render/api.ts (line 354) + defined in angular2/src/render/api.ts (line 377) :markdown Abstract reference to the element which can be marshaled across web-worker boundary. diff --git a/public/docs/js/latest/api/di/Binding-class.jade b/public/docs/js/latest/api/di/Binding-class.jade index c5bda5d601..c529b2958f 100644 --- a/public/docs/js/latest/api/di/Binding-class.jade +++ b/public/docs/js/latest/api/di/Binding-class.jade @@ -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<any>}) + {toClass?: Type, toValue?: any, toAlias?: any, toFactory?: Function, deps?: List<any>}) :markdown diff --git a/public/docs/js/latest/api/forms/Control-class.jade b/public/docs/js/latest/api/forms/Control-class.jade index cd1cdd96af..8f7712f58b 100644 --- a/public/docs/js/latest/api/forms/Control-class.jade +++ b/public/docs/js/latest/api/forms/Control-class.jade @@ -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 diff --git a/public/docs/js/latest/api/http/XHRBackend-class.jade b/public/docs/js/latest/api/http/XHRBackend-class.jade index d0bb9c7613..c8157a42b1 100644 --- a/public/docs/js/latest/api/http/XHRBackend-class.jade +++ b/public/docs/js/latest/api/http/XHRBackend-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/http - defined in angular2/src/http/backends/xhr_backend.ts (line 60) + defined in angular2/src/http/backends/xhr_backend.ts (line 62) :markdown Creates XHRConnection instances. diff --git a/public/docs/js/latest/api/http/XHRConnection-class.jade b/public/docs/js/latest/api/http/XHRConnection-class.jade index df4f9c1f6e..f24f48ef7b 100644 --- a/public/docs/js/latest/api/http/XHRConnection-class.jade +++ b/public/docs/js/latest/api/http/XHRConnection-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/http - defined in angular2/src/http/backends/xhr_backend.ts (line 9) + defined in angular2/src/http/backends/xhr_backend.ts (line 9) :markdown Creates connections using `XMLHttpRequest`. Given a fully-qualified diff --git a/public/docs/js/latest/api/test/AsyncTestCompleter-class.jade b/public/docs/js/latest/api/test/AsyncTestCompleter-class.jade index 1a60d639b1..0119db79b7 100644 --- a/public/docs/js/latest/api/test/AsyncTestCompleter-class.jade +++ b/public/docs/js/latest/api/test/AsyncTestCompleter-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 35) + defined in angular2/src/test_lib/test_lib.ts (line 36) :markdown diff --git a/public/docs/js/latest/api/test/FunctionWithParamTokens-class.jade b/public/docs/js/latest/api/test/FunctionWithParamTokens-class.jade index 2f186b74f4..9139bfce8f 100644 --- a/public/docs/js/latest/api/test/FunctionWithParamTokens-class.jade +++ b/public/docs/js/latest/api/test/FunctionWithParamTokens-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_injector.ts (line 181) + defined in angular2/src/test_lib/test_injector.ts (line 184) :markdown diff --git a/public/docs/js/latest/api/test/GuinessCompatibleSpy-interface.jade b/public/docs/js/latest/api/test/GuinessCompatibleSpy-interface.jade index de2b039e4f..a61692d21d 100644 --- a/public/docs/js/latest/api/test/GuinessCompatibleSpy-interface.jade +++ b/public/docs/js/latest/api/test/GuinessCompatibleSpy-interface.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 300) + defined in angular2/src/test_lib/test_lib.ts (line 301) :markdown diff --git a/public/docs/js/latest/api/test/IS_DARTIUM-var.jade b/public/docs/js/latest/api/test/IS_DARTIUM-var.jade index c90415cc26..33453e1e0e 100644 --- a/public/docs/js/latest/api/test/IS_DARTIUM-var.jade +++ b/public/docs/js/latest/api/test/IS_DARTIUM-var.jade @@ -3,7 +3,7 @@ h2 IS_DARTIUM variable p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 35) + defined in angular2/src/test_lib/test_lib.ts (line 36) :markdown diff --git a/public/docs/js/latest/api/test/SpyObject-class.jade b/public/docs/js/latest/api/test/SpyObject-class.jade index ad1f623b00..196f93d722 100644 --- a/public/docs/js/latest/api/test/SpyObject-class.jade +++ b/public/docs/js/latest/api/test/SpyObject-class.jade @@ -1,7 +1,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 311) + defined in angular2/src/test_lib/test_lib.ts (line 312) :markdown diff --git a/public/docs/js/latest/api/test/beforeEach-function.jade b/public/docs/js/latest/api/test/beforeEach-function.jade index ee815cd85a..f99c4f0a9b 100644 --- a/public/docs/js/latest/api/test/beforeEach-function.jade +++ b/public/docs/js/latest/api/test/beforeEach-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 96) + defined in angular2/src/test_lib/test_lib.ts (line 97) :markdown diff --git a/public/docs/js/latest/api/test/beforeEachBindings-function.jade b/public/docs/js/latest/api/test/beforeEachBindings-function.jade index 74fd4f18c4..db0648c6e8 100644 --- a/public/docs/js/latest/api/test/beforeEachBindings-function.jade +++ b/public/docs/js/latest/api/test/beforeEachBindings-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 110) + defined in angular2/src/test_lib/test_lib.ts (line 111) :markdown Allows overriding default bindings defined in test_injector.js. diff --git a/public/docs/js/latest/api/test/createTestInjector-function.jade b/public/docs/js/latest/api/test/createTestInjector-function.jade index 9b98c01a3f..00a47c7751 100644 --- a/public/docs/js/latest/api/test/createTestInjector-function.jade +++ b/public/docs/js/latest/api/test/createTestInjector-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_injector.ts (line 143) + defined in angular2/src/test_lib/test_injector.ts (line 146) :markdown diff --git a/public/docs/js/latest/api/test/ddescribe-function.jade b/public/docs/js/latest/api/test/ddescribe-function.jade index adeaa73da9..cdd8f17bd3 100644 --- a/public/docs/js/latest/api/test/ddescribe-function.jade +++ b/public/docs/js/latest/api/test/ddescribe-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 88) + defined in angular2/src/test_lib/test_lib.ts (line 89) :markdown diff --git a/public/docs/js/latest/api/test/describe-function.jade b/public/docs/js/latest/api/test/describe-function.jade index a30b530e2d..3c4385e07b 100644 --- a/public/docs/js/latest/api/test/describe-function.jade +++ b/public/docs/js/latest/api/test/describe-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 84) + defined in angular2/src/test_lib/test_lib.ts (line 85) :markdown diff --git a/public/docs/js/latest/api/test/iit-function.jade b/public/docs/js/latest/api/test/iit-function.jade index 78de3c5324..af5c12d327 100644 --- a/public/docs/js/latest/api/test/iit-function.jade +++ b/public/docs/js/latest/api/test/iit-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 168) + defined in angular2/src/test_lib/test_lib.ts (line 169) :markdown diff --git a/public/docs/js/latest/api/test/inject-function.jade b/public/docs/js/latest/api/test/inject-function.jade index 4a3a2fe2b6..bc4f4da87b 100644 --- a/public/docs/js/latest/api/test/inject-function.jade +++ b/public/docs/js/latest/api/test/inject-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_injector.ts (line 148) + defined in angular2/src/test_lib/test_injector.ts (line 151) :markdown Allows injecting dependencies in `beforeEach()` and `it()`. diff --git a/public/docs/js/latest/api/test/isInInnerZone-function.jade b/public/docs/js/latest/api/test/isInInnerZone-function.jade index 914ea2cd7b..9dc84e3476 100644 --- a/public/docs/js/latest/api/test/isInInnerZone-function.jade +++ b/public/docs/js/latest/api/test/isInInnerZone-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 394) + defined in angular2/src/test_lib/test_lib.ts (line 395) :markdown diff --git a/public/docs/js/latest/api/test/it-function.jade b/public/docs/js/latest/api/test/it-function.jade index f054e24622..63760baded 100644 --- a/public/docs/js/latest/api/test/it-function.jade +++ b/public/docs/js/latest/api/test/it-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 160) + defined in angular2/src/test_lib/test_lib.ts (line 161) :markdown diff --git a/public/docs/js/latest/api/test/xdescribe-function.jade b/public/docs/js/latest/api/test/xdescribe-function.jade index 5a25403906..e7422f4c04 100644 --- a/public/docs/js/latest/api/test/xdescribe-function.jade +++ b/public/docs/js/latest/api/test/xdescribe-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 92) + defined in angular2/src/test_lib/test_lib.ts (line 93) :markdown diff --git a/public/docs/js/latest/api/test/xit-function.jade b/public/docs/js/latest/api/test/xit-function.jade index 04df3a2992..665b577ad0 100644 --- a/public/docs/js/latest/api/test/xit-function.jade +++ b/public/docs/js/latest/api/test/xit-function.jade @@ -10,7 +10,7 @@ p.location-badge. exported from angular2/test - defined in angular2/src/test_lib/test_lib.ts (line 164) + defined in angular2/src/test_lib/test_lib.ts (line 165) :markdown