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

Issue 8966029: Report errors and warnings for hiding elements, issue 572. (Closed)

Created:
9 years ago by scheglov
Modified:
9 years ago
Reviewers:
zundel
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Report errors and warnings for hiding elements, issue 572. http://code.google.com/p/dart/issues/detail?id=572 R=zundel@google.com BUG= TEST= Committed: https://code.google.com/p/dart/source/detail?r=2636

Patch Set 1 #

Total comments: 10

Patch Set 2 : Fixes for comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+828 lines, -261 lines) Patch
M client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart View 2 chunks +2 lines, -2 lines 0 comments Download
M client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart View 1 chunk +10 lines, -10 lines 0 comments Download
M client/dom/generated/src/wrapping/_InjectedScriptHostWrappingImplementation.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M client/dom/generated/src/wrapping/_StorageWrappingImplementation.dart View 1 chunk +9 lines, -9 lines 0 comments Download
M client/html/release/htmlimpl.dart View 6 chunks +24 lines, -24 lines 0 comments Download
M client/layout/GridLayout.dart View 4 chunks +4 lines, -4 lines 0 comments Download
M client/samples/dartcombat/state.dart View 2 chunks +7 lines, -7 lines 0 comments Download
M client/samples/isolate/IsolateSample.dart View 3 chunks +6 lines, -6 lines 0 comments Download
M client/samples/spirodraw/Spirodraw.dart View 3 chunks +15 lines, -15 lines 0 comments Download
M client/samples/swarm/DataSource.dart View 2 chunks +4 lines, -4 lines 0 comments Download
M client/samples/total/src/DateTimeUtils.dart View 2 chunks +4 lines, -4 lines 0 comments Download
M client/samples/total/src/Functions.dart View 1 3 chunks +3 lines, -3 lines 0 comments Download
M client/samples/total/src/InnerMenuView.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M client/samples/total/src/SpreadsheetPresenter.dart View 8 chunks +17 lines, -17 lines 0 comments Download
M client/testing/dartest/dartest.dart View 1 5 chunks +14 lines, -14 lines 0 comments Download
M client/testing/unittest/shared.dart View 1 2 chunks +13 lines, -13 lines 0 comments Download
M client/testing/unittest/unittest.dart View 1 3 chunks +10 lines, -10 lines 0 comments Download
M client/testing/unittest/unittest_dartest.dart View 1 2 chunks +11 lines, -11 lines 0 comments Download
M client/tests/client/html/DocumentFragmentTests.dart View 1 chunk +1 line, -1 line 0 comments Download
M client/tests/client/layout/layout_tests.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M client/tests/client/samples/total/total_test_lib.dart View 1 1 chunk +20 lines, -18 lines 0 comments Download
M client/touch/Momentum.dart View 2 chunks +10 lines, -10 lines 0 comments Download
M client/view/ConveyorView.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/ClassScope.java View 1 1 chunk +7 lines, -2 lines 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/CompileTimeConstantResolver.java View 1 chunk +1 line, -1 line 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/Elements.java View 3 chunks +171 lines, -0 lines 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/ResolutionContext.java View 2 chunks +28 lines, -6 lines 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/Resolver.java View 6 chunks +50 lines, -4 lines 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java View 1 2 chunks +11 lines, -2 lines 0 comments Download
M compiler/java/com/google/dart/compiler/resolver/Scope.java View 1 chunk +1 line, -1 line 0 comments Download
M compiler/java/com/google/dart/compiler/util/Paths.java View 1 chunk +5 lines, -0 lines 0 comments Download
M compiler/javatests/com/google/dart/compiler/backend/js/testClosureOpt.dart View 1 chunk +16 lines, -16 lines 0 comments Download
M compiler/javatests/com/google/dart/compiler/backend/js/testListSubTypeExprOpt.dart View 1 chunk +5 lines, -5 lines 0 comments Download
D compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart View 1 chunk +0 lines, -11 lines 0 comments Download
M compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java View 4 chunks +318 lines, -2 lines 0 comments Download
M compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java View 4 chunks +4 lines, -3 lines 0 comments Download
M compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java View 1 chunk +1 line, -0 lines 0 comments Download
M compiler/lib/implementation/regexp.dart View 1 chunk +5 lines, -5 lines 0 comments Download
M compiler/lib/implementation/string.dart View 1 chunk +5 lines, -5 lines 0 comments Download
M corelib/src/implementation/dual_pivot_quicksort.dart View 3 chunks +3 lines, -3 lines 0 comments Download
M corelib/src/implementation/promise_implementation.dart View 2 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 4 (0 generated)
scheglov
9 years ago (2011-12-16 19:28:11 UTC) #1
zundel
http://codereview.chromium.org/8966029/diff/1/client/samples/total/src/Functions.dart File client/samples/total/src/Functions.dart (right): http://codereview.chromium.org/8966029/diff/1/client/samples/total/src/Functions.dart#newcode598 client/samples/total/src/Functions.dart:598: _newFunc("COUNT", -1, (CellLocation location, List<Value> stack, int top, int ...
9 years ago (2011-12-19 16:29:13 UTC) #2
scheglov
http://codereview.chromium.org/8966029/diff/1/client/samples/total/src/Functions.dart File client/samples/total/src/Functions.dart (right): http://codereview.chromium.org/8966029/diff/1/client/samples/total/src/Functions.dart#newcode598 client/samples/total/src/Functions.dart:598: _newFunc("COUNT", -1, (CellLocation location, List<Value> stack, int top, int ...
9 years ago (2011-12-19 19:10:38 UTC) #3
zundel
9 years ago (2011-12-19 19:56:20 UTC) #4
lgtm

Powered by Google App Engine
This is Rietveld 408576698