Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
CompletionMode.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 code completion that users can invoke.
13 *
14 * @coverage dart.server.generated.types
15 */
16public class CompletionMode {
17
18 /**
19 * Basic code completion invocation type, and the default for this enumeration.
20 */
21 public static final String BASIC = "BASIC";
22
23 /**
24 * Smart code completion, currently not implemented.
25 */
26 public static final String SMART = "SMART";
27
28}