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

Side by Side Diff: pkg/analyzer/lib/task/model.dart

Issue 2738313002: rename fasta.Token.value --> lexeme (Closed)
Patch Set: Created 3 years, 9 months 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library analyzer.task.model; 5 library analyzer.task.model;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:developer'; 8 import 'dart:developer';
9 9
10 import 'package:analyzer/error/error.dart' show AnalysisError; 10 import 'package:analyzer/error/error.dart' show AnalysisError;
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 */ 647 */
648 void set currentValue(Object value); 648 void set currentValue(Object value);
649 649
650 /** 650 /**
651 * Return `true` if the value accessed by this input builder should be flushed 651 * Return `true` if the value accessed by this input builder should be flushed
652 * from the cache at the time it is retrieved. 652 * from the cache at the time it is retrieved.
653 */ 653 */
654 bool get flushOnAccess; 654 bool get flushOnAccess;
655 655
656 /** 656 /**
657 * Return the [value] that was computed by this builder. 657 * Return the [lexeme] that was computed by this builder.
ahe 2017/03/10 07:26:11 And this?
danrubel 2017/03/11 22:10:37 Reverted.
658 * 658 *
659 * Throws a [StateError] if [moveNext] has not been invoked or if the last 659 * Throws a [StateError] if [moveNext] has not been invoked or if the last
660 * invocation of [moveNext] returned `true`. 660 * invocation of [moveNext] returned `true`.
661 * 661 *
662 * Returns `null` if no value could be computed due to a circular dependency. 662 * Returns `null` if no value could be computed due to a circular dependency.
663 */ 663 */
664 V get inputValue; 664 V get inputValue;
665 665
666 /** 666 /**
667 * Record that no value is available for the current result, due to a 667 * Record that no value is available for the current result, due to a
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 /** 777 /**
778 * A work should be done, but without any special urgency. 778 * A work should be done, but without any special urgency.
779 */ 779 */
780 NORMAL, 780 NORMAL,
781 781
782 /** 782 /**
783 * Nothing to do. 783 * Nothing to do.
784 */ 784 */
785 NONE 785 NONE
786 } 786 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698