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

Unified Diff: client/samples/total/src/Functions.dart

Issue 8966029: Report errors and warnings for hiding elements, issue 572. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for comments Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/samples/total/src/DateTimeUtils.dart ('k') | client/samples/total/src/InnerMenuView.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/samples/total/src/Functions.dart
diff --git a/client/samples/total/src/Functions.dart b/client/samples/total/src/Functions.dart
index 2abfe68d2af632ef2870c9ce0b0a329b08a43aba..f88b9bf2bd37a9eb6ddf273b61f8cb9425c3bca3 100644
--- a/client/samples/total/src/Functions.dart
+++ b/client/samples/total/src/Functions.dart
@@ -601,7 +601,7 @@ class Functions {
Value value = stack[top + i];
if (value.datatype == Value.TYPE_CELLREF || value.datatype == Value.TYPE_RANGE) {
count += _countCellsInRange(value.asRangeToken().getCellRange(location),
- int _(Cell cell) { return cell.isNumeric() ? 1 : 0; });
+ int __(Cell cell) { return cell.isNumeric() ? 1 : 0; });
} else if (value.datatype == Value.TYPE_DOUBLE) {
count++;
}
@@ -614,7 +614,7 @@ class Functions {
Value value = stack[top + i];
if (value.datatype == Value.TYPE_CELLREF || value.datatype == Value.TYPE_RANGE) {
count += _countCellsInRange(value.asRangeToken().getCellRange(location),
- int _(Cell cell) { return cell.isEmpty() ? 0 : 1; });
+ int __(Cell cell) { return cell.isEmpty() ? 0 : 1; });
} else {
count++;
}
@@ -732,7 +732,7 @@ class Functions {
int index = 1;
double bestValue = matchType == 1 ? -1.0e100 : 1.0e100;
int bestIndex = -1;
- range.forEach(_(CellLocation loc) {
+ range.forEach(__(CellLocation loc) {
Cell cell = loc.getCell();
if (cell != null) {
double d = cell.getDoubleValue();
« no previous file with comments | « client/samples/total/src/DateTimeUtils.dart ('k') | client/samples/total/src/InnerMenuView.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698