Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							923d90bce8 
							
						 
					 
					
						
						
							
							refactor(views): clean up creating views in place and extract view_hydrator  
						
						... 
						
						
						
						Major changes:
- `compiler.compileRoot(el, type)`
  -> `compiler.compileInHost(type) + viewHydrator.hydrateHostViewInPlace(el, view)`
- move all `hydrate`/`dehydrate` methods out of `View` and `ViewContainer` into
  a standalone class `view_hydrator` as private methods and provide new public
  methods dedicated to the individual use cases.
Note: This PR does not change the current functionality, only moves it
into different places.
See design discussion in #1351 , in preparation for imperative views. 
						
						
					 
					
						2015-04-16 11:58:01 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							68faddbf5c 
							
						 
					 
					
						
						
							
							feat(change_detection): updated handling ON_PUSH detectors so they get notified when their bindings change  
						
						
						
						
					 
					
						2015-04-15 16:21:21 -07:00 
						 
				 
			
				
					
						
							
							
								Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							c05bad381c 
							
						 
					 
					
						
						
							
							perf(benchmark): measure Injector init from resolved bindings  
						
						
						
						
					 
					
						2015-04-13 15:06:44 -07:00 
						 
				 
			
				
					
						
							
							
								Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							4a961f4ecb 
							
						 
					 
					
						
						
							
							feat(di): provide two ways to create an injector, resolved and unresolved  
						
						... 
						
						
						
						Add two factory static functions to Injector: resolveAndCreate and
fromResolvedBindings.
We want to avoid resolution and flattening every time we create a new
injector. This commit allows the user to cache resolved bindings and
reuse them. 
						
						
					 
					
						2015-04-13 15:06:43 -07:00 
						 
				 
			
				
					
						
							
							
								Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							0012caa4d5 
							
						 
					 
					
						
						
							
							perf(benchmarks): measure cost of Injector init with a variety of bindings  
						
						
						
						
					 
					
						2015-04-13 10:02:13 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							6f8fef4f13 
							
						 
					 
					
						
						
							
							feat(bootstrap): changed bootstrap to return ComponentRef  
						
						
						
						
					 
					
						2015-04-10 18:14:59 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							6ce085a21a 
							
						 
					 
					
						
						
							
							feat(benchmark): make view cache a parameter to the tree benchmark  
						
						
						
						
					 
					
						2015-04-10 16:57:46 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							82127571b5 
							
						 
					 
					
						
						
							
							feat(dart/transform): Use the Dart transformer for benchmarks  
						
						... 
						
						
						
						Remove explicit generation of reflection information in benchmark code
and generate it with the transformer. 
						
						
					 
					
						2015-04-10 14:01:55 -07:00 
						 
				 
			
				
					
						
							
							
								Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							bf7933714a 
							
						 
					 
					
						
						
							
							chore(rename): rename View and Template concepts for  #1244  
						
						
						
						
					 
					
						2015-04-10 12:00:37 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							f45281a10a 
							
						 
					 
					
						
						
							
							feat(view): generalized loading of dynamic components  
						
						
						
						
					 
					
						2015-04-09 22:15:42 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							61cb99ea42 
							
						 
					 
					
						
						
							
							refactor(change_detection): removed directive and binding mementos  
						
						
						
						
					 
					
						2015-04-09 18:56:19 -07:00 
						 
				 
			
				
					
						
							
							
								Martin Probst 
							
						 
					 
					
						
						
						
						
							
						
						
							22c1a0d030 
							
						 
					 
					
						
						
							
							fix(benchmarks): Stop working around a Traceur bug.  
						
						
						
						
					 
					
						2015-04-09 18:03:27 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							69c3bff086 
							
						 
					 
					
						
						
							
							feat(change_detection): updated change detection to update directive directly, without the dispatcher  
						
						
						
						
					 
					
						2015-04-08 22:14:50 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							50098767fc 
							
						 
					 
					
						
						
							
							refactor(render): use render layer fully  
						
						... 
						
						
						
						Introduces angular2/src/core/compiler/ViewFactory which
extracts ProtoView.instantiate and replaces ViewPool.
Note: This is a work in progress commit to unblock other commits.
There will be follow ups to add unit tests, remove TODOs, … 
						
						
					 
					
						2015-04-08 20:51:31 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							42c0171b40 
							
						 
					 
					
						
						
							
							chore(dart/transform): Create targets for serving transformed Dart code  
						
						... 
						
						
						
						- Allow pub (build|serve) to specify mode
- Update pubbuild.js & pubserve.js to allow the caller to provide a `mode` value.
- Update settings to allow the di benchmark to be transformed to run statically. 
						
						
					 
					
						2015-04-07 10:57:01 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							9c62b5867e 
							
						 
					 
					
						
						
							
							benchmark(change_detection): added a new set of benchmarks measuring updating properties  
						
						
						
						
					 
					
						2015-04-06 18:13:20 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							1d4d18d9db 
							
						 
					 
					
						
						
							
							refactor(render): user render compiler  
						
						
						
						
					 
					
						2015-04-03 23:41:00 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							abea92af59 
							
						 
					 
					
						
						
							
							refactor(change_detection): call onChange from the change detector  
						
						
						
						
					 
					
						2015-04-02 21:22:42 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							c1aa65239e 
							
						 
					 
					
						
						
							
							refactor(render): move services to render folder  
						
						... 
						
						
						
						property_setter_factory
selector
style_inliner
style_url_resolver
shadow_css 
						
						
					 
					
						2015-04-02 14:40:49 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							4f56628566 
							
						 
					 
					
						
						
							
							refactor(render): move services to right location  
						
						... 
						
						
						
						core/compiler/events -> render/dom/events
core/compiler/url_resolver -> services/url_resolver
core/compiler/xhr/* -> services/* 
						
						
					 
					
						2015-04-02 10:35:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							47542b0cb0 
							
						 
					 
					
						
						
							
							fix(build): don’t read out chrome perflogs during e2e tests  
						
						... 
						
						
						
						We do this as we are seeing flakes in Chrome with ECONNREFUSED.
Also reuses the same browser window.
Also reenables the infinite scroll benchmark
Closes  #1137  
						
						
					 
					
						2015-04-01 17:09:26 -07:00 
						 
				 
			
				
					
						
							
							
								Julie Ralph 
							
						 
					 
					
						
						
						
						
							
						
						
							e81e5fb2b9 
							
						 
					 
					
						
						
							
							feat(testability): add an initial scaffold for the testability api  
						
						... 
						
						
						
						Make each application component register itself onto the testability
API and exports the API onto the window object. 
						
						
					 
					
						2015-04-01 13:54:06 -07:00 
						 
				 
			
				
					
						
							
							
								Jeff Cross 
							
						 
					 
					
						
						
						
						
							
						
						
							a55efbd8b8 
							
						 
					 
					
						
						
							
							feat(perf): add Angular2 implementation of largetable benchmark from AngularJS 1.x  
						
						
						
						
					 
					
						2015-03-31 09:54:41 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							33bfc4c24a 
							
						 
					 
					
						
						
							
							feat(bench press): replace microIterations with microMetrics  
						
						
						
						
					 
					
						2015-03-27 16:16:35 -07:00 
						 
				 
			
				
					
						
							
							
								Julie Ralph 
							
						 
					 
					
						
						
						
						
							
						
						
							3afb744e77 
							
						 
					 
					
						
						
							
							chore(ci): reorganize e2e/perf test running  
						
						... 
						
						
						
						Now, running protractor configs by default only runs e2e tests. If
the --benchmark flag is added, it runs only the perf tests, and always
restarts the browser in between tests. If the --dryrun test is added,
the perf tests are run only once.
This should make it easier to run perf tests versus example e2e tests,
and help stabilize the travis build because perf tests always
run with a clean browser. 
						
						
					 
					
						2015-03-27 13:29:21 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							723e8fde93 
							
						 
					 
					
						
						
							
							feat(change_detection): added a directive lifecycle hook that is called after children are checked  
						
						
						
						
					 
					
						2015-03-27 13:26:36 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							65d759316b 
							
						 
					 
					
						
						
							
							fix(PrivateComponentLoader): add the loader to the app injector  
						
						... 
						
						
						
						fixes  #1063  
					
						2015-03-24 22:10:26 +01:00 
						 
				 
			
				
					
						
							
							
								Marc Laval 
							
						 
					 
					
						
						
						
						
							
						
						
							41b53e71e1 
							
						 
					 
					
						
						
							
							feat(selector): support , for multiple targets  
						
						... 
						
						
						
						Fixes  #867 
Closes  #1019  
					
						2015-03-23 10:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Pawel Kozlowski 
							
						 
					 
					
						
						
						
						
							
						
						
							0fb9f3bd6c 
							
						 
					 
					
						
						
							
							fix(ElementBinderBuilder): properly bind to web component properties  
						
						... 
						
						
						
						Fixes  #776 
Closes  #1024  
					
						2015-03-22 14:14:36 +01:00 
						 
				 
			
				
					
						
							
							
								gdi2290 
							
						 
					 
					
						
						
						
						
							
						
						
							b61b8d60b7 
							
						 
					 
					
						
						
							
							refactor(forEach): change to for-of with iterable  
						
						... 
						
						
						
						rename: foreach -> for
rename: array -> iterable
update: DartParseTreeWriter
update: naive_infinite_scroll
update: todo
fix: tests in foreach_spec
Closes  #919  
						
						
					 
					
						2015-03-21 14:19:21 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							a16954d3a5 
							
						 
					 
					
						
						
							
							refactor(view): separate context and locals  
						
						
						
						
					 
					
						2015-03-17 14:25:57 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							3273adade5 
							
						 
					 
					
						
						
							
							refactor(view): change view to pass all bindings to proto change detector at once  
						
						
						
						
					 
					
						2015-03-13 14:03:57 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							951a808e0e 
							
						 
					 
					
						
						
							
							refactor(PropertySetter): use the global reflector  
						
						
						
						
					 
					
						2015-03-12 19:49:34 +01:00 
						 
				 
			
				
					
						
							
							
								Rado Kirov 
							
						 
					 
					
						
						
						
						
							
						
						
							f1593ebca5 
							
						 
					 
					
						
						
							
							feat(shadowdom): turn on ShadowDom Emulated Mode by default.  
						
						... 
						
						
						
						Closes : #526  
					
						2015-03-11 12:46:15 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							370643539f 
							
						 
					 
					
						
						
							
							refactor(EventHandler): have a single instance of event handlers per ProtoView  
						
						
						
						
					 
					
						2015-03-10 15:26:06 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							b349c35678 
							
						 
					 
					
						
						
							
							feat(ElementInjector): implement @PropertySetter  
						
						... 
						
						
						
						relates to #621  
						
						
					 
					
						2015-03-09 18:28:39 +01:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							043b8c6d2e 
							
						 
					 
					
						
						
							
							feat(bench press): add microIterations option  
						
						
						
						
					 
					
						2015-03-03 14:41:03 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							03793d0714 
							
						 
					 
					
						
						
							
							feat(CssProcessor): add support for CssTransformers  
						
						... 
						
						
						
						Closes  #860  
					
						2015-03-03 11:24:08 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							9982520a23 
							
						 
					 
					
						
						
							
							refactor(Compiler): make shadow DOM stragegy support more flexible  
						
						
						
						
					 
					
						2015-03-03 11:24:08 -08:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							8adac5332a 
							
						 
					 
					
						
						
							
							fix(benchmarks): prepare publish to pub  
						
						
						
						
					 
					
						2015-03-02 16:34:32 -08:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							81a5ae8f6e 
							
						 
					 
					
						
						
							
							fix(build): report and fail on errors  
						
						... 
						
						
						
						tree benchmark was broken and we didn’t know it…
also changes reporting to not include messages from `console.time()`, … 
						
						
					 
					
						2015-03-02 16:34:32 -08:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							7ddfbf8bea 
							
						 
					 
					
						
						
							
							refactor(tests): move files from angular2/e2e_test to angular2/src/test_lib  
						
						... 
						
						
						
						The `e2e_test` folder in `angular2` never contained e2e tests but was
used to store utilities for writing e2e/perf tests. A better place for
them is `angular2/src/test_lib`.
Closes  #855  
						
						
					 
					
						2015-03-02 14:38:02 -08:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							21f24d19dd 
							
						 
					 
					
						
						
							
							feat(change_detection): implement hydration/dehydration  
						
						
						
						
					 
					
						2015-03-02 13:28:39 -08:00 
						 
				 
			
				
					
						
							
							
								Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							757eae8ad3 
							
						 
					 
					
						
						
							
							feat(compiler): DOM adapters + html5lib implementation; misc fixes  
						
						
						
						
					 
					
						2015-02-27 16:49:14 -08:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							3b40052dc7 
							
						 
					 
					
						
						
							
							feat(build): enforce mobile layout during e2e tests  
						
						... 
						
						
						
						This is important as we run our benchmarks on
mobile devices as web driver tests fails if buttons
are not visible / overlaid by other content. 
						
						
					 
					
						2015-02-27 11:11:32 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							009e11a6be 
							
						 
					 
					
						
						
							
							fix: Static DI init  
						
						
						
						
					 
					
						2015-02-26 19:31:44 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							929fc65493 
							
						 
					 
					
						
						
							
							refactor(template loading): add support for base URLs, css rewriting  
						
						... 
						
						
						
						fixes  #654  
					
						2015-02-26 09:36:04 +01:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							56906db4d5 
							
						 
					 
					
						
						
							
							fix es6 compilation for Element.remove.  
						
						... 
						
						
						
						Use DOM facade to delete an Element since the remove method is only in Dart. 
						
						
					 
					
						2015-02-25 15:56:08 -08:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							642e9a36b7 
							
						 
					 
					
						
						
							
							fix es6 compilation for Map.remove.  
						
						... 
						
						
						
						In dart, Map has a remove method,but in ES6 it is delete. 
						
						
					 
					
						2015-02-25 15:44:29 -08:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							1376e49ea0 
							
						 
					 
					
						
						
							
							fix(Injector): fix dependencies in static injectors  
						
						... 
						
						
						
						Closes  #784  
					
						2015-02-25 09:52:56 -08:00