Skip to content

Commit 8e4fc69

Browse files
committed
try commenting out line on CI
1 parent 9514e24 commit 8e4fc69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/tooling/js/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export function addFromString(
115115

116116
export function expressionFromString(value: string): AstTypes.Expression {
117117
const program = parseScript(dedent(value));
118-
stripAst(program, ['raw']);
118+
//stripAst(program, ['raw']);
119119
const statement = program.body[0]!;
120120
if (statement.type !== 'ExpressionStatement') {
121121
throw new Error('value passed was not an expression');

0 commit comments

Comments
 (0)