Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ElementKind.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 elements.
13 *
14 * @coverage dart.server.generated.types
15 */
16public class ElementKind {
17
18 public static final String CLASS = "CLASS";
19
20 public static final String CLASS_TYPE_ALIAS = "CLASS_TYPE_ALIAS";
21
22 public static final String COMPILATION_UNIT = "COMPILATION_UNIT";
23
24 public static final String CONSTRUCTOR = "CONSTRUCTOR";
25
26 public static final String CONSTRUCTOR_INVOCATION = "CONSTRUCTOR_INVOCATION";
27
28 public static final String ENUM = "ENUM";
29
30 public static final String ENUM_CONSTANT = "ENUM_CONSTANT";
31
32 public static final String EXTENSION = "EXTENSION";
33
34 public static final String EXTENSION_TYPE = "EXTENSION_TYPE";
35
36 public static final String FIELD = "FIELD";
37
38 public static final String FILE = "FILE";
39
40 public static final String FUNCTION = "FUNCTION";
41
42 public static final String FUNCTION_INVOCATION = "FUNCTION_INVOCATION";
43
44 public static final String FUNCTION_TYPE_ALIAS = "FUNCTION_TYPE_ALIAS";
45
46 public static final String GETTER = "GETTER";
47
48 public static final String LABEL = "LABEL";
49
50 public static final String LIBRARY = "LIBRARY";
51
52 public static final String LOCAL_VARIABLE = "LOCAL_VARIABLE";
53
54 public static final String METHOD = "METHOD";
55
56 public static final String MIXIN = "MIXIN";
57
58 public static final String PARAMETER = "PARAMETER";
59
60 public static final String PREFIX = "PREFIX";
61
62 public static final String SETTER = "SETTER";
63
64 public static final String TOP_LEVEL_VARIABLE = "TOP_LEVEL_VARIABLE";
65
66 public static final String TYPE_ALIAS = "TYPE_ALIAS";
67
68 public static final String TYPE_PARAMETER = "TYPE_PARAMETER";
69
70 public static final String UNIT_TEST_GROUP = "UNIT_TEST_GROUP";
71
72 public static final String UNIT_TEST_TEST = "UNIT_TEST_TEST";
73
74 public static final String UNKNOWN = "UNKNOWN";
75
76}