Revert "Add types.TypeOfExpression"

This reverts commit 520dd7e947.
This commit is contained in:
Lars Kappert
2015-01-06 10:05:44 +01:00
parent abc90778e8
commit 216b8c2fd1
4 changed files with 0 additions and 8 deletions

View File

@@ -116,8 +116,3 @@ exports.MemberExpression = function (node, print) {
print(node.property);
}
};
exports.TypeOfExpression = function (node, print) {
this.push("typeof ");
print(node.expression);
};

View File

@@ -1,6 +1,5 @@
{
"ExpressionStatement": ["Statement"],
"TypeOfExpression": ["Statement"],
"BreakStatement": ["Statement"],
"ContinueStatement": ["Statement"],
"DebuggerStatement": ["Statement"],

View File

@@ -7,7 +7,6 @@
"CallExpression": ["callee", "arguments"],
"ConditionalExpression": ["test", "consequent", "alternate"],
"ExpressionStatement": ["expression"],
"TypeOfExpression": ["expression"],
"File": ["program", "comments", "tokens"],
"FunctionExpression": ["id", "params", "body", "generator"],
"Identifier": ["name"],

View File

@@ -26,7 +26,6 @@
"ExportDeclaration": ["declaration", "specifiers", "source"],
"ExportSpecifier": ["id", "name"],
"ExpressionStatement": ["expression"],
"TypeOfExpression": ["expression"],
"File": ["program"],
"ForInStatement": ["left", "right", "body"],
"ForOfStatement": ["left", "right", "body"],