Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Issue 180873006: Update the Angular/DI tests to latest from github. (Closed)

Created:
6 years, 10 months ago by blois
Modified:
6 years, 10 months ago
CC:
reviews_dartlang.org, Kasper Lund, ricow1
Visibility:
Public.

Description

Mostly the output from third_party/pkg/update_all.sh + change to update_di.sh to show an error message that the imports need to be fixed (and associated fixup) + change to the status file to indicate that Angular's parser test now passes BUG= R=sigmund@google.com Committed: https://code.google.com/p/dart/source/detail?r=33073

Patch Set 1 : #

Total comments: 2

Patch Set 2 : Review feedback #

Unified diffs Side-by-side diffs Delta from patch set Stats (+14924 lines, -16774 lines) Patch
M pkg/pkg.status View 1 1 chunk +0 lines, -1 line 0 comments Download
M pkg/third_party/angular_tests/browser_test.dart View 1 2 chunks +126 lines, -116 lines 0 comments Download
M third_party/pkg/angular/.travis.yml View 1 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/pkg/angular/CHANGELOG.md View 1 1 chunk +245 lines, -3 lines 0 comments Download
M third_party/pkg/angular/CONTRIBUTING.md View 1 1 chunk +220 lines, -1 line 0 comments Download
A third_party/pkg/angular/DEVELOPER.md View 1 1 chunk +167 lines, -0 lines 0 comments Download
M third_party/pkg/angular/LICENSE View 1 1 chunk +1 line, -1 line 0 comments Download
third_party/pkg/angular/LICENSE View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/README.md View 1 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/pkg/angular/REVISION View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/bin/parser_generator_for_spec.dart View 1 3 chunks +205 lines, -1 line 0 comments Download
D third_party/pkg/angular/demo/bouncing_balls/bouncy_balls.dart View 1 1 chunk +0 lines, -128 lines 0 comments Download
D third_party/pkg/angular/demo/bouncing_balls/index.html View 1 1 chunk +0 lines, -69 lines 0 comments Download
A + third_party/pkg/angular/demo/bouncing_balls/web/bouncy_balls.dart View 1 4 chunks +38 lines, -29 lines 0 comments Download
A + third_party/pkg/angular/demo/bouncing_balls/web/index.html View 1 1 chunk +4 lines, -2 lines 0 comments Download
D third_party/pkg/angular/demo/helloworld/helloworld.dart View 1 1 chunk +0 lines, -13 lines 0 comments Download
D third_party/pkg/angular/demo/helloworld/index.html View 1 1 chunk +0 lines, -14 lines 0 comments Download
A + third_party/pkg/angular/demo/helloworld/web/helloworld.dart View 1 1 chunk +8 lines, -1 line 0 comments Download
A + third_party/pkg/angular/demo/helloworld/web/index.html View 1 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/pkg/angular/demo/todo/web/index.html View 1 1 chunk +21 lines, -22 lines 0 comments Download
M third_party/pkg/angular/demo/todo/web/main.dart View 1 2 chunks +6 lines, -7 lines 0 comments Download
M third_party/pkg/angular/demo/todo/web/todo.dart View 1 3 chunks +31 lines, -34 lines 0 comments Download
M third_party/pkg/angular/karma-perf.conf.js View 1 1 chunk +1 line, -0 lines 0 comments Download
M third_party/pkg/angular/karma.conf.js View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/pkg/angular/lib/angular.dart View 1 2 chunks +11 lines, -9 lines 0 comments Download
M third_party/pkg/angular/lib/bootstrap.dart View 1 4 chunks +21 lines, -9 lines 0 comments Download
A third_party/pkg/angular/lib/change_detection/ast.dart View 1 1 chunk +146 lines, -0 lines 0 comments Download
A third_party/pkg/angular/lib/change_detection/change_detection.dart View 1 1 chunk +258 lines, -0 lines 0 comments Download
A third_party/pkg/angular/lib/change_detection/dirty_checking_change_detector.dart View 1 1 chunk +1274 lines, -0 lines 0 comments Download
A third_party/pkg/angular/lib/change_detection/linked_list.dart View 1 1 chunk +160 lines, -0 lines 0 comments Download
A third_party/pkg/angular/lib/change_detection/prototype_map.dart View 1 1 chunk +37 lines, -0 lines 0 comments Download
A third_party/pkg/angular/lib/change_detection/watch_group.dart View 1 1 chunk +831 lines, -0 lines 0 comments Download
M third_party/pkg/angular/lib/core/directive.dart View 1 11 chunks +38 lines, -105 lines 0 comments Download
M third_party/pkg/angular/lib/core/exception_handler.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/lib/core/interpolate.dart View 1 4 chunks +20 lines, -20 lines 0 comments Download
M third_party/pkg/angular/lib/core/module.dart View 1 3 chunks +14 lines, -5 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/dynamic_parser.dart View 1 3 chunks +8 lines, -6 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/dynamic_parser_impl.dart View 1 3 chunks +14 lines, -4 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/eval.dart View 1 3 chunks +19 lines, -14 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/eval_access.dart View 1 7 chunks +29 lines, -13 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/eval_calls.dart View 1 2 chunks +16 lines, -12 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/lexer.dart View 1 2 chunks +7 lines, -6 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/parser.dart View 1 1 chunk +2 lines, -1 line 0 comments Download
M third_party/pkg/angular/lib/core/parser/static_parser.dart View 1 3 chunks +5 lines, -3 lines 0 comments Download
M third_party/pkg/angular/lib/core/parser/syntax.dart View 1 3 chunks +13 lines, -1 line 0 comments Download
M third_party/pkg/angular/lib/core/parser/utils.dart View 1 4 chunks +14 lines, -5 lines 0 comments Download
M third_party/pkg/angular/lib/core/registry.dart View 1 4 chunks +16 lines, -24 lines 0 comments Download
M third_party/pkg/angular/lib/core/scope.dart View 1 1 chunk +833 lines, -850 lines 0 comments Download
M third_party/pkg/angular/lib/core/zone.dart View 1 7 chunks +47 lines, -31 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/block.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
third_party/pkg/angular/lib/core_dom/block.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/block_factory.dart View 1 10 chunks +69 lines, -30 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/common.dart View 1 2 chunks +15 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/compiler.dart View 1 8 chunks +77 lines, -55 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/directive.dart View 1 3 chunks +6 lines, -14 lines 0 comments Download
A third_party/pkg/angular/lib/core_dom/directive_map.dart View 1 1 chunk +65 lines, -0 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/http.dart View 1 28 chunks +109 lines, -144 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/module.dart View 1 4 chunks +4 lines, -2 lines 0 comments Download
third_party/pkg/angular/lib/core_dom/module.dart View 1 4 chunks +4 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/ng_mustache.dart View 1 1 chunk +42 lines, -16 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/node_cursor.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/core_dom/selector.dart View 1 13 chunks +105 lines, -69 lines 0 comments Download
M third_party/pkg/angular/lib/directive/input_select.dart View 1 8 chunks +59 lines, -53 lines 0 comments Download
M third_party/pkg/angular/lib/directive/module.dart View 1 4 chunks +9 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_a.dart View 1 2 chunks +5 lines, -4 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_bind.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/lib/directive/ng_bind_html.dart View 1 1 chunk +8 lines, -11 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_bind_template.dart View 1 1 chunk +5 lines, -4 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_class.dart View 1 9 chunks +48 lines, -22 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_control.dart View 1 4 chunks +194 lines, -15 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_events.dart View 1 4 chunks +9 lines, -13 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_form.dart View 1 3 chunks +28 lines, -126 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_if.dart View 1 5 chunks +27 lines, -18 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_include.dart View 1 3 chunks +13 lines, -13 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_model.dart View 1 10 chunks +224 lines, -100 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_model_validators.dart View 1 3 chunks +91 lines, -144 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_non_bindable.dart View 1 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_pluralize.dart View 1 4 chunks +66 lines, -45 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_repeat.dart View 1 6 chunks +134 lines, -108 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_show_hide.dart View 1 2 chunks +5 lines, -7 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_src_boolean.dart View 1 3 chunks +16 lines, -14 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_style.dart View 1 1 chunk +20 lines, -20 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_switch.dart View 1 4 chunks +13 lines, -20 lines 0 comments Download
M third_party/pkg/angular/lib/directive/ng_template.dart View 1 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/pkg/angular/lib/filter/currency.dart View 1 2 chunks +5 lines, -8 lines 0 comments Download
M third_party/pkg/angular/lib/filter/date.dart View 1 3 chunks +12 lines, -12 lines 0 comments Download
M third_party/pkg/angular/lib/filter/filter.dart View 1 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/filter/limit_to.dart View 1 1 chunk +7 lines, -17 lines 0 comments Download
M third_party/pkg/angular/lib/filter/number.dart View 1 1 chunk +1 line, -2 lines 0 comments Download
M third_party/pkg/angular/lib/introspection.dart View 1 6 chunks +32 lines, -30 lines 0 comments Download
M third_party/pkg/angular/lib/mock/debug.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/lib/mock/exception_handler.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/mock/http_backend.dart View 1 23 chunks +91 lines, -118 lines 0 comments Download
M third_party/pkg/angular/lib/mock/log.dart View 1 3 chunks +14 lines, -7 lines 0 comments Download
M third_party/pkg/angular/lib/mock/mock_window.dart View 1 1 chunk +7 lines, -10 lines 0 comments Download
M third_party/pkg/angular/lib/mock/module.dart View 1 1 chunk +2 lines, -3 lines 0 comments Download
M third_party/pkg/angular/lib/mock/probe.dart View 1 1 chunk +4 lines, -2 lines 0 comments Download
M third_party/pkg/angular/lib/mock/test_bed.dart View 1 5 chunks +10 lines, -4 lines 0 comments Download
M third_party/pkg/angular/lib/mock/test_injection.dart View 1 6 chunks +26 lines, -21 lines 0 comments Download
M third_party/pkg/angular/lib/mock/zone.dart View 1 5 chunks +52 lines, -49 lines 0 comments Download
M third_party/pkg/angular/lib/perf/dev_tools_timeline.dart View 1 1 chunk +2 lines, -1 line 0 comments Download
M third_party/pkg/angular/lib/playback/playback_data.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/lib/playback/playback_http.dart View 1 4 chunks +7 lines, -10 lines 0 comments Download
M third_party/pkg/angular/lib/routing/module.dart View 1 4 chunks +53 lines, -56 lines 0 comments Download
M third_party/pkg/angular/lib/routing/ng_bind_route.dart View 1 2 chunks +4 lines, -9 lines 0 comments Download
M third_party/pkg/angular/lib/routing/ng_view.dart View 1 4 chunks +50 lines, -47 lines 0 comments Download
M third_party/pkg/angular/lib/routing/routing.dart View 1 5 chunks +108 lines, -12 lines 0 comments Download
M third_party/pkg/angular/lib/tools/expression_extractor.dart View 1 4 chunks +14 lines, -7 lines 0 comments Download
M third_party/pkg/angular/lib/tools/html_extractor.dart View 1 1 chunk +11 lines, -12 lines 0 comments Download
M third_party/pkg/angular/lib/tools/parser_generator/dart_code_gen.dart View 1 3 chunks +9 lines, -6 lines 0 comments Download
M third_party/pkg/angular/lib/tools/parser_generator/generator.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/pkg/angular/lib/tools/parser_getter_setter/generator.dart View 1 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/pkg/angular/lib/tools/reserved_dart_keywords.dart View 1 1 chunk +0 lines, -10 lines 0 comments Download
M third_party/pkg/angular/lib/tools/selector.dart View 1 1 chunk +3 lines, -11 lines 0 comments Download
M third_party/pkg/angular/lib/tools/source_metadata_extractor.dart View 1 7 chunks +6 lines, -12 lines 0 comments Download
M third_party/pkg/angular/lib/tools/template_cache_generator.dart View 1 10 chunks +64 lines, -36 lines 0 comments Download
M third_party/pkg/angular/lib/utils.dart View 1 3 chunks +45 lines, -13 lines 0 comments Download
M third_party/pkg/angular/package.json View 1 1 chunk +16 lines, -6 lines 0 comments Download
A third_party/pkg/angular/perf.sh View 1 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/pkg/angular/perf/dom/compile_perf.dart View 1 1 chunk +4 lines, -4 lines 0 comments Download
A third_party/pkg/angular/perf/loop_perf.dart View 1 1 chunk +71 lines, -0 lines 0 comments Download
M third_party/pkg/angular/perf/mirror_perf.dart View 1 3 chunks +23 lines, -18 lines 0 comments Download
M third_party/pkg/angular/perf/parser_perf.dart View 1 1 chunk +2 lines, -1 line 0 comments Download
A + third_party/pkg/angular/perf/pubspec.yaml View 1 1 chunk +8 lines, -7 lines 0 comments Download
M third_party/pkg/angular/perf/scope_perf.dart View 1 1 chunk +213 lines, -44 lines 0 comments Download
A third_party/pkg/angular/perf/watch_group_perf.dart View 1 1 chunk +313 lines, -0 lines 0 comments Download
M third_party/pkg/angular/pubspec.yaml View 1 1 chunk +14 lines, -10 lines 0 comments Download
M third_party/pkg/angular/run-test.sh View 1 2 chunks +3 lines, -1 line 0 comments Download
M third_party/pkg/angular/scripts/analyze.sh View 1 1 chunk +8 lines, -1 line 0 comments Download
M third_party/pkg/angular/scripts/changelog/authors.sh View 1 1 chunk +20 lines, -1 line 0 comments Download
M third_party/pkg/angular/scripts/env.sh View 1 1 chunk +24 lines, -15 lines 0 comments Download
M third_party/pkg/angular/scripts/generate-documentation.sh View 1 1 chunk +15 lines, -3 lines 0 comments Download
M third_party/pkg/angular/scripts/karma/snapshot.sh View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/scripts/travis/build.sh View 1 2 chunks +5 lines, -2 lines 0 comments Download
M third_party/pkg/angular/test/_specs.dart View 1 7 chunks +12 lines, -17 lines 0 comments Download
A third_party/pkg/angular/test/change_detection/dirty_checking_change_detector_spec.dart View 1 1 chunk +772 lines, -0 lines 0 comments Download
A third_party/pkg/angular/test/change_detection/watch_group_spec.dart View 1 1 chunk +666 lines, -0 lines 0 comments Download
M third_party/pkg/angular/test/config/filter_tests.dart View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/pkg/angular/test/core/core_directive_spec.dart View 1 8 chunks +14 lines, -20 lines 0 comments Download
M third_party/pkg/angular/test/core/interpolate_spec.dart View 1 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/core/parser/generated_functions.dart View 1 1 chunk +1 line, -3 lines 0 comments Download
M third_party/pkg/angular/test/core/parser/generated_getter_setter_spec.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/test/core/parser/generated_parser_spec.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/test/core/parser/parser_spec.dart View 1 24 chunks +198 lines, -100 lines 0 comments Download
M third_party/pkg/angular/test/core/parser/static_parser_spec.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/test/core/registry_spec.dart View 1 1 chunk +12 lines, -0 lines 0 comments Download
third_party/pkg/angular/test/core/registry_spec.dart View 1 1 chunk +12 lines, -0 lines 0 comments Download
M third_party/pkg/angular/test/core/scope_spec.dart View 1 1 chunk +1107 lines, -1073 lines 0 comments Download
M third_party/pkg/angular/test/core/templateurl_spec.dart View 1 8 chunks +64 lines, -39 lines 0 comments Download
M third_party/pkg/angular/test/core/zone_spec.dart View 1 1 chunk +17 lines, -0 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/block_spec.dart View 1 3 chunks +75 lines, -12 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/compiler_spec.dart View 1 25 chunks +304 lines, -153 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/cookies_spec.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/test/core_dom/directive_spec.dart View 1 2 chunks +8 lines, -8 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/http_spec.dart View 1 3 chunks +8 lines, -7 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/ng_mustache_spec.dart View 1 2 chunks +58 lines, -46 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/selector_spec.dart View 1 4 chunks +15 lines, -2 lines 0 comments Download
M third_party/pkg/angular/test/core_dom/shadow_root_options_spec.dart View 1 4 chunks +4 lines, -2 lines 0 comments Download
M third_party/pkg/angular/test/directive/input_select_spec.dart View 1 52 chunks +316 lines, -272 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_a_spec.dart View 1 2 chunks +9 lines, -8 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_bind_html_spec.dart View 1 1 chunk +28 lines, -7 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_bind_spec.dart View 1 2 chunks +10 lines, -10 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_bind_template_spec.dart View 1 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_class_spec.dart View 1 14 chunks +76 lines, -64 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_events_spec.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_form_spec.dart View 1 10 chunks +187 lines, -68 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_if_spec.dart View 1 8 chunks +59 lines, -31 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_include_spec.dart View 1 2 chunks +7 lines, -7 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_model_spec.dart View 1 1 chunk +1021 lines, -384 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_model_validators_spec.dart View 1 11 chunks +97 lines, -77 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_non_bindable_spec.dart View 1 2 chunks +5 lines, -5 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_pluralize_spec.dart View 1 3 chunks +58 lines, -58 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_repeat_spec.dart View 1 14 chunks +102 lines, -128 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_show_hide_spec.dart View 1 1 chunk +25 lines, -4 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_src_boolean_spec.dart View 1 13 chunks +61 lines, -61 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_style_spec.dart View 1 5 chunks +11 lines, -11 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_switch_spec.dart View 1 9 chunks +50 lines, -50 lines 0 comments Download
M third_party/pkg/angular/test/directive/ng_template_spec.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/pkg/angular/test/filter/date_spec.dart View 1 2 chunks +9 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/filter/filter_spec.dart View 1 1 chunk +13 lines, -12 lines 0 comments Download
M third_party/pkg/angular/test/filter/json_spec.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/filter/limit_to_spec.dart View 1 1 chunk +29 lines, -29 lines 0 comments Download
M third_party/pkg/angular/test/filter/lowercase_spec.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/filter/order_by_spec.dart View 1 9 chunks +38 lines, -38 lines 0 comments Download
M third_party/pkg/angular/test/filter/uppercase_spec.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/io/expression_extractor_spec.dart View 1 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/pkg/angular/test/io/source_metadata_extractor_spec.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/io/template_cache_generator_spec.dart View 1 2 chunks +45 lines, -10 lines 0 comments Download
A third_party/pkg/angular/test/io/test_files/cssUrls/main.dart View 1 1 chunk +26 lines, -0 lines 0 comments Download
A third_party/pkg/angular/test/io/test_files/cssUrls/one.css View 1 1 chunk +1 line, -0 lines 0 comments Download
A third_party/pkg/angular/test/io/test_files/cssUrls/three.css View 1 1 chunk +1 line, -0 lines 0 comments Download
A third_party/pkg/angular/test/io/test_files/cssUrls/two.css View 1 1 chunk +1 line, -0 lines 0 comments Download
M third_party/pkg/angular/test/io/test_files/main.dart View 1 2 chunks +10 lines, -3 lines 0 comments Download
M third_party/pkg/angular/test/io/test_files/templates/main.dart View 1 1 chunk +9 lines, -9 lines 0 comments Download
M third_party/pkg/angular/test/jasmine_syntax.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/angular/test/mock/test_bed_spec.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/pkg/angular/test/playback/playback_http_spec.dart View 1 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/pkg/angular/test/routing/ng_bind_route_spec.dart View 1 4 chunks +10 lines, -10 lines 0 comments Download
M third_party/pkg/angular/test/routing/ng_view_spec.dart View 1 6 chunks +11 lines, -11 lines 0 comments Download
M third_party/pkg/angular/test/routing/routing_spec.dart View 1 1 chunk +343 lines, -15 lines 0 comments Download
M third_party/pkg/angular/test/tools/html_extractor_spec.dart View 1 6 chunks +12 lines, -12 lines 0 comments Download
M third_party/pkg/angular/test/tools/source_metadata_extractor_spec.dart View 1 6 chunks +11 lines, -11 lines 0 comments Download
A third_party/pkg/di/.travis.yml View 1 1 chunk +17 lines, -0 lines 0 comments Download
M third_party/pkg/di/REVISION View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/di/benchmark/injector_benchmark_common.dart View 1 2 chunks +21 lines, -2 lines 0 comments Download
M third_party/pkg/di/lib/dynamic_injector.dart View 1 1 chunk +15 lines, -0 lines 0 comments Download
M third_party/pkg/di/lib/generator.dart View 1 9 chunks +223 lines, -78 lines 0 comments Download
M third_party/pkg/di/lib/module.dart View 1 7 chunks +32 lines, -4 lines 0 comments Download
M third_party/pkg/di/lib/reflected_type.dart View 1 1 chunk +10 lines, -4 lines 0 comments Download
M third_party/pkg/di/lib/static_injector.dart View 1 3 chunks +32 lines, -7 lines 0 comments Download
M third_party/pkg/di/pubspec.yaml View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/pkg/di/run-tests.sh View 1 1 chunk +2 lines, -1 line 0 comments Download
A third_party/pkg/di/scripts/env.sh View 1 1 chunk +23 lines, -0 lines 0 comments Download
A third_party/pkg/di/scripts/travis/benchmark.sh View 1 1 chunk +5 lines, -0 lines 0 comments Download
A third_party/pkg/di/scripts/travis/build.sh View 1 1 chunk +5 lines, -0 lines 0 comments Download
A + third_party/pkg/di/scripts/travis/setup.sh View 1 2 chunks +1 line, -10 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/a.dart View 1 1 chunk +12 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/a2.dart View 1 1 chunk +11 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/annotations.dart View 1 1 chunk +5 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/b.dart View 1 1 chunk +12 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/b2.dart View 1 1 chunk +11 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/common1.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/common2.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
third_party/pkg/di/test/assets/gen_test1/common2.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A third_party/pkg/di/test/assets/gen_test1/main.dart View 1 1 chunk +35 lines, -0 lines 0 comments Download
M third_party/pkg/di/test/fixed-unittest.dart View 1 1 chunk +5 lines, -3 lines 0 comments Download
A third_party/pkg/di/test/generator_test.dart View 1 1 chunk +44 lines, -0 lines 0 comments Download
M third_party/pkg/di/test/main.dart View 1 10 chunks +187 lines, -14 lines 0 comments Download
M third_party/pkg/di/test/type_factories_gen.dart View 1 1 chunk +20 lines, -17 lines 0 comments Download
M third_party/pkg/js/REVISION View 1 1 chunk +1 line, -1 line 0 comments Download
A + third_party/pkg/js/example/jsonp/jsonp.dart View 1 3 chunks +7 lines, -10 lines 0 comments Download
A + third_party/pkg/js/example/jsonp/jsonp.html View 1 2 chunks +1 line, -7 lines 0 comments Download
D third_party/pkg/js/example/twitter/twitter.dart View 1 1 chunk +0 lines, -52 lines 0 comments Download
third_party/pkg/js/example/twitter/twitter.dart View 1 1 chunk +0 lines, -52 lines 0 comments Download
D third_party/pkg/js/example/twitter/twitter.html View 1 1 chunk +0 lines, -14 lines 0 comments Download
M third_party/pkg/js/gh-pages-template/example/index.html View 1 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/pkg/js/lib/js.dart View 1 2 chunks +2 lines, -3 lines 0 comments Download
M third_party/pkg/js/pubspec.yaml View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/route_hierarchical/README.md View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/pkg/route_hierarchical/REVISION View 1 1 chunk +1 line, -1 line 0 comments Download
D third_party/pkg/route_hierarchical/example/full/company-info.dart View 1 1 chunk +0 lines, -63 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/company-info.html View 1 1 chunk +0 lines, -46 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/company-info-loader.dart View 1 1 chunk +0 lines, -39 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/company-info-loader.html View 1 1 chunk +0 lines, -20 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/css/bootstrap.css View 1 1 chunk +0 lines, -6158 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/css/bootstrap-responsive.css View 1 1 chunk +0 lines, -1109 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/css/bootstrap-responsive.min.css View 1 1 chunk +0 lines, -9 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/css/bootstrap.min.css View 1 1 chunk +0 lines, -9 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/data.dart View 1 1 chunk +0 lines, -51 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/home.dart View 1 1 chunk +0 lines, -21 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/home.html View 1 1 chunk +0 lines, -30 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/img/glyphicons-halflings.png View 1 Binary file 0 comments Download
D third_party/pkg/route_hierarchical/example/full/img/glyphicons-halflings-white.png View 1 Binary file 0 comments Download
D third_party/pkg/route_hierarchical/example/full/index.dart View 1 1 chunk +0 lines, -64 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/index.html View 1 1 chunk +0 lines, -40 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/js/bootstrap.js View 1 1 chunk +0 lines, -2276 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/js/bootstrap.min.js View 1 1 chunk +0 lines, -6 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/portfolio.dart View 1 1 chunk +0 lines, -97 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/portfolio.html View 1 1 chunk +0 lines, -63 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/root-view.dart View 1 1 chunk +0 lines, -20 lines 0 comments Download
D third_party/pkg/route_hierarchical/example/full/root-view.html View 1 1 chunk +0 lines, -25 lines 0 comments Download
M third_party/pkg/route_hierarchical/lib/client.dart View 1 14 chunks +189 lines, -85 lines 0 comments Download
M third_party/pkg/route_hierarchical/pubspec.yaml View 1 1 chunk +4 lines, -5 lines 0 comments Download
M third_party/pkg/route_hierarchical/test/client_test.dart View 1 7 chunks +53 lines, -7 lines 0 comments Download
M third_party/pkg/route_hierarchical/test/url_template_test.dart View 1 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/pkg/update_di.sh View 1 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
blois
6 years, 10 months ago (2014-02-26 17:43:33 UTC) #1
Siggi Cherem (dart-lang)
lgtm https://codereview.chromium.org/180873006/diff/10001/third_party/pkg/update_di.sh File third_party/pkg/update_di.sh (right): https://codereview.chromium.org/180873006/diff/10001/third_party/pkg/update_di.sh#newcode27 third_party/pkg/update_di.sh:27: requires manual fixup of imports.$(tput sgr0)" let's add ...
6 years, 10 months ago (2014-02-26 18:18:10 UTC) #2
kasperl
Thanks, Pete!
6 years, 10 months ago (2014-02-26 18:21:39 UTC) #3
blois
https://codereview.chromium.org/180873006/diff/10001/third_party/pkg/update_di.sh File third_party/pkg/update_di.sh (right): https://codereview.chromium.org/180873006/diff/10001/third_party/pkg/update_di.sh#newcode27 third_party/pkg/update_di.sh:27: requires manual fixup of imports.$(tput sgr0)" On 2014/02/26 18:18:12, ...
6 years, 10 months ago (2014-02-26 18:35:25 UTC) #4
blois
6 years, 10 months ago (2014-02-26 18:38:07 UTC) #5
Message was sent while issue was closed.
Committed patchset #2 manually as r33073 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698