Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
FoldingKind.java
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
3 * for details. All rights reserved. Use of this source code is governed by a
4 * BSD-style license that can be found in the LICENSE file.
5 *
6 * This file has been automatically generated. Please do not edit it manually.
7 * To regenerate the file, use the script "pkg/analysis_server/tool/spec/generate_files".
8 */
9package org.dartlang.analysis.server.protocol;
10
11/**
12 * An enumeration of the kinds of folding regions.
13 *
14 * @coverage dart.server.generated.types
15 */
16public class FoldingKind {
17
18 public static final String ANNOTATIONS = "ANNOTATIONS";
19
20 public static final String BLOCK = "BLOCK";
21
22 public static final String CLASS_BODY = "CLASS_BODY";
23
24 public static final String COMMENT = "COMMENT";
25
26 public static final String DIRECTIVES = "DIRECTIVES";
27
28 public static final String DOCUMENTATION_COMMENT = "DOCUMENTATION_COMMENT";
29
30 public static final String FILE_HEADER = "FILE_HEADER";
31
32 public static final String FUNCTION_BODY = "FUNCTION_BODY";
33
34 public static final String INVOCATION = "INVOCATION";
35
36 public static final String LITERAL = "LITERAL";
37
38 public static final String PARAMETERS = "PARAMETERS";
39
40}