Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhofer committed Sep 14, 2022
1 parent 06cb2ae commit 5cfc685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/compile/nodes/shared/AbstractBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Node from './Node';
import { INode } from '../interfaces';
import compiler_warnings from '../../compiler_warnings';

const regex_non_whitespace_characters = /\S/;
const regex_non_whitespace_characters = /[^ \r\n\f\v\t]/;

export default class AbstractBlock extends Node {
block: Block;
Expand Down

0 comments on commit 5cfc685

Please sign in to comment.