Skip to content

Commit 50b0ac4

Browse files
committed
build with latest
1 parent 1f1417a commit 50b0ac4

22 files changed

+0
-101
lines changed

dist/linter.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// This file is only called from linter
2-
// See : https://github.com/AtomLinter/Linter/issues/337
31
var parent = require('./worker/parent');
42
var fs = require('fs');
53
var atom_1 = require("atom");

dist/main/atom/autoCompleteProvider.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/// <reference path='../../globals'/>
21
var parent = require('../../worker/parent');
32
var atomConfig = require('./atomConfig');
43
var fs = require('fs');

dist/main/atom/commands/commands.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,6 @@ function registerCommands() {
157157
autoCompleteProvider.triggerAutocompletePlus();
158158
});
159159
atom.commands.add('atom-workspace', 'typescript:bas-development-testing', function (e) {
160-
// documentationView.docView.hide();
161-
// documentationView.docView.autoPosition();
162-
// documentationView.testDocumentationView();
163-
// parent.debugLanguageServiceHostVersion({ filePath: atom.workspace.getActiveEditor().getPath() })
164-
// .then((res) => {
165-
// console.log(res.text.length);
166-
// // console.log(JSON.stringify({txt:res.text}))
167-
// });
168160
atom.commands.dispatch(atom.views.getView(atom.workspace.getActiveTextEditor()), 'typescript:dependency-view');
169161
});
170162
atom.commands.add('atom-workspace', 'typescript:toggle-semantic-view', function (e) {
@@ -373,7 +365,6 @@ function registerCommands() {
373365
},
374366
filterKey: 'display',
375367
confirmed: function (item) {
376-
// NOTE: we can special case UI's here if we want.
377368
parent.applyQuickFix({ key: item.key, filePath: query.filePath, position: query.position }).then(function (res) {
378369
applyRefactorings(res.refactorings);
379370
});
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/**
2-
* For rename (move) files / folders
3-
* Waiting on https://github.com/atom/tree-view/issues/433
4-
*/
51
function registerRenameHandling() {
62
}
73
exports.registerRenameHandling = registerRenameHandling;

dist/main/atom/components/ts-view.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Some docs
2-
// http://www.html5rocks.com/en/tutorials/webcomponents/customelements/ (look at lifecycle callback methods)
31
var __extends = (this && this.__extends) || function (d, b) {
42
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
53
function __() { this.constructor = d; }

dist/main/atom/signatureProvider.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
function requestHandler(config) {
2-
/*
3-
try {
4-
console.log(require('views/tooltip'));
5-
} catch (ex) {
6-
console.error(ex);
7-
}*/
82
}
93
exports.requestHandler = requestHandler;

dist/main/atom/tooltipManager.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Inspiration : https://atom.io/packages/ide-haskell
2-
// and https://atom.io/packages/ide-flow
31
var atomUtils = require('./atomUtils');
42
var parent = require('../../worker/parent');
53
var path = require('path');

dist/main/atom/typescriptGrammar.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
// Help:
2-
// https://github.com/atom/first-mate/
3-
// https://github.com/fdecampredon/brackets-typescript/blob/master/src/main/mode.ts
4-
// https://github.com/p-e-w/language-javascript-semantic/blob/master/lib/javascript-semantic-grammar.coffee
5-
// TODO: update to latest : https://github.com/atom/atom/pull/6757
61
var __extends = (this && this.__extends) || function (d, b) {
72
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
83
function __() { this.constructor = d; }

dist/main/atom/views/rView.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// Sample implementation of a react view
2-
// DOCS:
3-
// http://facebook.github.io/react/blog/2015/01/27/react-v0.13.0-beta-1.html#es6-classes
4-
// https://facebook.github.io/react/docs/component-specs.html
51
var __extends = (this && this.__extends) || function (d, b) {
62
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
73
function __() { this.constructor = d; }

dist/main/atom/views/semanticView.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ var MyComponent = (function (_super) {
2727
};
2828
}
2929
MyComponent.prototype.componentDidMount = function () {
30-
// We listen to a few things
3130
var _this = this;
3231
var editorScrolling;
3332
var editorChanging;

0 commit comments

Comments
 (0)