Skip to content

Commit

Permalink
Added missing semicolons to appease ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rutvik Choudhary committed Sep 30, 2020
1 parent 7f91b03 commit 8a13579
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ace/mode/mips.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ oop.inherits(Mode, TextMode);

(function() {
this.lineCommentStart = ["#"];
this.$id = "ace/mode/mips"
this.$id = "ace/mode/mips";
}).call(Mode.prototype);

exports.Mode = Mode;
Expand Down
4 changes: 2 additions & 2 deletions lib/ace/mode/mips_highlight_rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ var MIPSHighlightRules = function() {
regex: /#.*$/,
comment: "Single line comments"
}]
}
};

this.normalizeRules();
};
Expand All @@ -124,7 +124,7 @@ MIPSHighlightRules.metaData = {
fileTypes: ["s", "asm"],
name: "MIPS",
scopeName: "source.mips"
}
};


oop.inherits(MIPSHighlightRules, TextHighlightRules);
Expand Down

0 comments on commit 8a13579

Please sign in to comment.