Index: pkg/front_end/lib/src/fasta/parser/parser.md |
diff --git a/pkg/front_end/lib/src/fasta/parser/parser.md b/pkg/front_end/lib/src/fasta/parser/parser.md |
index de6b27388e9756775c3a7fabc3ae2c9245b9a25f..15a08a534db05b239981e79cad849b244b350800 100644 |
--- a/pkg/front_end/lib/src/fasta/parser/parser.md |
+++ b/pkg/front_end/lib/src/fasta/parser/parser.md |
@@ -9,21 +9,6 @@ BSD-style license that can be found in the LICENSE file. |
* In parseType, the parser uses peekAfterIfType to tell the difference |
between `id` and `id id`. |
- * In parseExpressionStatementOrDeclaration, the parser uses |
- peekIdentifierAfterType to select between an expression statement or a |
- local (function or variable) declaration. |
- |
- * In parseExpressionStatementOrConstDeclaration, the parser uses |
- peekIdentifierAfterOptionalType to select between an expression statement |
- and a const local variable. |
- |
- * In parseSendOrFunctionLiteral, the parser uses peekAfterIfType to select |
- between function expression and send. |
- |
- * In parseVariablesDeclarationOrExpressionOpt, the parser uses |
- peekIdentifierAfterType to select between local variable declarations or an |
- expression. |
- |
* In parseSwitchCase, the parser uses peekPastLabels to select between case |
labels and statement labels. |