Chromium Code Reviews| Index: pkg/kernel/lib/ast.dart |
| diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart |
| index 7535f619c97c2ae64989498e1750f5f2259b1ee5..176156f0efcf96c57aef8a4c29d84a3cd0f7564f 100644 |
| --- a/pkg/kernel/lib/ast.dart |
| +++ b/pkg/kernel/lib/ast.dart |
| @@ -3000,6 +3000,12 @@ class YieldStatement extends Statement { |
| // |
| // DESIGN TODO: Should we remove the 'final' modifier from variables? |
| class VariableDeclaration extends Statement { |
| + /// Offset of the equals sign in the source file it comes from. |
|
Kevin Millikin (Google)
2017/02/08 15:37:51
For dartdoc comments, I suggest following the styl
jensj
2017/02/13 14:04:15
Done.
|
| + /// Valid values are from 0 and up, or -1 ([TreeNode.noOffset]) |
| + /// if the equals sign offset is not available (e.g. if not initialized) |
| + /// (this is the default if none is specifically set). |
| + int fileEqualsOffset = TreeNode.noOffset; |
| + |
| /// For named parameters, this is the name of the parameter. No two named |
| /// parameters (in the same parameter list) can have the same name. |
| /// |