Skip to content

Commit

Permalink
Update ByteStore documentation.
Browse files Browse the repository at this point in the history
TBR

R=brianwilkerson@google.com, paulberry@google.com
BUG=

Review URL: https://codereview.chromium.org/2445623002 .
  • Loading branch information
scheglov committed Oct 23, 2016
1 parent 46aa3ce commit f275b09
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/analyzer/lib/src/dart/analysis/byte_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ import 'dart:collection';
* Store of bytes associated with string keys.
*
* Each key must be not longer than 100 characters and consist of only `[a-z]`,
* `[0-9]`, `.` and `_` characters. It cannot have the sequence `..` in it.
* `[0-9]`, `.` and `_` characters. The key cannot be an empty string, the
* literal `.`, or contain the sequence `..`.
*
* Note that associations are not guaranteed to be persistent. The value
* associated with a key can change or become `null` at any point in time.
*
* TODO(scheglov) Research using asynchronous API.
*/
abstract class ByteStore {
/**
Expand Down

0 comments on commit f275b09

Please sign in to comment.