atom-nuclide
Version:
A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.
32 lines (29 loc) • 764 B
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
/**
* Constants here represent enums with the same values got from hh_client.
*/
var HACK_GRAMMARS = ['text.html.hack', 'text.html.php'];
exports.HACK_GRAMMARS = HACK_GRAMMARS;
var HACK_GRAMMARS_SET = new Set(HACK_GRAMMARS);
exports.HACK_GRAMMARS_SET = HACK_GRAMMARS_SET;
var SearchResultType = Object.freeze({
CLASS: 0,
TYPEDEF: 1,
METHOD: 2,
CLASS_VAR: 3,
FUNCTION: 4,
CONSTANT: 5,
INTERFACE: 6,
ABSTRACT_CLASS: 7,
TRAIT: 8
});
exports.SearchResultType = SearchResultType;