Skip to content

Commit

Permalink
remove m from locals
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrsh committed May 13, 2018
1 parent b859484 commit a260014
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/moon.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
var parse = function (input) {
var length = input.length;
var dependencies = [];
var locals = ["NaN", "false", "in", "m", "null", "true", "typeof", "undefined"];
var locals = ["NaN", "false", "in", "null", "true", "typeof", "undefined"];

var root = {
type: "m-fragment",
Expand Down
2 changes: 1 addition & 1 deletion dist/moon.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/compiler/parser/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { parseExpression } from "./expression";
export const parse = (input) => {
const length = input.length;
let dependencies = [];
let locals = ["NaN", "false", "in", "m", "null", "true", "typeof", "undefined"];
let locals = ["NaN", "false", "in", "null", "true", "typeof", "undefined"];

const root = {
type: "m-fragment",
Expand Down

0 comments on commit a260014

Please sign in to comment.