module lang::std::Layout
rascal-0.40.16
Usage
import lang::std::Layout;
Dependencies
extend lang::std::Whitespace;
extend lang::std::Comment;
syntax Standard
layout Standard
= WhitespaceOrComment* !>> [\u0009-\u000D \u0020 \u0085 \u00A0 \u1680 \u180E \u2000-\u200A \u2028 \u2029 \u202F \u205F \u3000] !>> "//";
syntax WhitespaceOrComment
lexical WhitespaceOrComment
= whitespace: Whitespace
| comment: Comment
;