blob: 0392f28a2acf4012d89e9ddb26b0ad8225031158 [file] [log] [blame] [edit]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
const String codeKey = 'code';
const String contextReferencesKey = 'contextMessages';
const String correctionKey = 'correction';
/// Useful for debugging locally, setting this to true will cause all JSON
/// communication to be printed to stdout.
const debugPrintCommunication = false;
const String editsKey = 'edits';
const String endColumnKey = 'endColumn';
const String endLineKey = 'endLine';
const String fileKey = 'file';
const String fileStampKey = 'fileStamp';
const String hasFixKey = 'hasFix';
const String lengthKey = 'length';
const String locationKey = 'location';
const String messageKey = 'message';
const String offsetKey = 'offset';
const String replacementKey = 'replacement';
const String severityKey = 'severity';
const String stackTraceKey = 'stackTrace';
const String startColumnKey = 'startColumn';
const String startLineKey = 'startLine';
const String subscriptionsKey = 'subscriptions';
const String typeKey = 'type';
const String urlKey = 'url';
const String versionKey = 'version';