提交 1afa2294 编写于 作者: A Alex Dima

Make modules ES6 friendly

上级 b200f48e
......@@ -2,14 +2,13 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import octiconLabel = require('vs/base/browser/ui/octiconLabel/octiconLabel');
import { escape } from 'vs/base/common/strings';
function render(text: string): string {
export function render(text: string): string {
return escape(text);
}
class MockOcticonLabel {
export class OcticonLabel {
private _container: HTMLElement;
......@@ -22,9 +21,3 @@ class MockOcticonLabel {
}
}
var mock: typeof octiconLabel = {
render: render,
OcticonLabel: <any>MockOcticonLabel
};
export = mock;
\ No newline at end of file
......@@ -19,9 +19,7 @@ import { createMonacoEditorAPI } from 'vs/editor/standalone/browser/standaloneEd
import { createMonacoLanguagesAPI } from 'vs/editor/standalone/browser/standaloneLanguages';
import { EDITOR_DEFAULTS, WrappingIndent } from 'vs/editor/common/config/editorOptions';
declare var exports: any;
var global: any = self;
global.monaco = exports;
// When missing, polyfill the native promise
// with our winjs-based polyfill
......@@ -36,14 +34,25 @@ if (typeof global.Promise === 'undefined') {
(<any>EDITOR_DEFAULTS.viewInfo).glyphMargin = false;
(<any>EDITOR_DEFAULTS).autoIndent = false;
let base = createMonacoBaseAPI();
for (let prop in base) {
if (base.hasOwnProperty(prop)) {
exports[prop] = (base as any)[prop];
}
}
exports.editor = createMonacoEditorAPI();
exports.languages = createMonacoLanguagesAPI();
const api = createMonacoBaseAPI();
api.editor = createMonacoEditorAPI();
api.languages = createMonacoLanguagesAPI();
export const CancellationTokenSource = api.CancellationTokenSource;
export const Emitter = api.Emitter;
export const KeyCode = api.KeyCode;
export const KeyMod = api.KeyMod;
export const Position = api.Position;
export const Range = api.Range;
export const Selection = api.Selection;
export const SelectionDirection = api.SelectionDirection;
export const Severity = api.Severity;
export const Promise = api.Promise;
export const Uri = api.Uri;
export const Token = api.Token;
export const editor = api.editor;
export const languages = api.languages;
global.monaco = api;
if (typeof global.require !== 'undefined' && typeof global.require.config === 'function') {
global.require.config({
......
......@@ -5,13 +5,13 @@
'use strict';
import Severity from 'vs/base/common/severity';
import BaseSeverity from 'vs/base/common/severity';
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
import { IDisposable } from 'vs/base/common/lifecycle';
import { IAction } from 'vs/base/common/actions';
import Event, { Emitter } from 'vs/base/common/event';
export import Severity = Severity;
export import Severity = BaseSeverity;
export const INotificationService = createDecorator<INotificationService>('notificationService');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册