Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Bug 527310 - codeEdit: Build is broken on javascript ternworker.js
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
bundles/org.eclipse.orion.client.ui/web/embeddedEditor/plugins/ternWorker.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| /******************************************************************************* | ||
| * @license | ||
| * Copyright (c) 2015 IBM Corporation and others. | ||
| * All rights reserved. This program and the accompanying materials are made | ||
| * available under the terms of the Eclipse Public License v1.0 | ||
| * (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution | ||
| * License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html). | ||
| * | ||
| * Contributors: | ||
| * IBM Corporation - initial API and implementation | ||
| *******************************************************************************/ | ||
| /*eslint-env node, browser*/ | ||
| /*globals importScripts */ | ||
| importScripts( '../../orion/requireErrorHandler.js', '../../requirejs/require.js'); // synchronous //$NON-NLS-1$ | ||
| require(["../../orion/require-config.js"], function(config){ | ||
| require.config({ | ||
| baseUrl: "../../" | ||
| }); | ||
| require(["javascript/plugins/ternWorkerCore"], null, self.errback); | ||
| }, self.errback); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters