Skip to content

Commit 7097329

Browse files
committed
Updated TSC compiler output
1 parent 1075678 commit 7097329

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

dist/main/atom/views/rView.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ var MyComponent = (function (_super) {
2424
});
2525
};
2626
MyComponent.prototype.render = function () {
27-
return React.createElement("div", {onClick: this.stop}, "This is a test: ", this.state.count);
27+
return React.createElement("div", {onClick: this.stop},
28+
"This is a test: ",
29+
this.state.count);
2830
};
2931
MyComponent.defaultProps = { count: 0 };
3032
return MyComponent;

dist/main/atom/views/semanticView.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ var MyComponent = (function (_super) {
7676
};
7777
MyComponent.prototype.renderNode = function (node, indent) {
7878
var _this = this;
79-
return React.createElement("div", {className: "node", onClick: function (event) { _this.gotoNode(node); event.stopPropagation(); }, "data-start": node.start.line, "data-end": node.end.line}, rts.indent(indent), React.createElement("span", {className: this.getIconForKind(node.kind) + ' ' + this.isSelected(node)}, node.text), node.subNodes.map(function (sn) { return _this.renderNode(sn, indent + 1); }));
79+
return React.createElement("div", {className: "node", onClick: function (event) { _this.gotoNode(node); event.stopPropagation(); }, "data-start": node.start.line, "data-end": node.end.line},
80+
rts.indent(indent),
81+
React.createElement("span", {className: this.getIconForKind(node.kind) + ' ' + this.isSelected(node)}, node.text),
82+
node.subNodes.map(function (sn) { return _this.renderNode(sn, indent + 1); }));
8083
};
8184
MyComponent.prototype.getIconForKind = function (kind) {
8285
return "icon icon-" + kind;

0 commit comments

Comments
 (0)