Skip to content

Commit

Permalink
coevolving std::Layout with std::Whitespace (see issue #86)
Browse files Browse the repository at this point in the history
  • Loading branch information
grammarware committed Dec 23, 2012
1 parent 7cef136 commit b42b710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/rascalmpl/library/lang/std/Layout.rsc
@@ -1,5 +1,5 @@
@license{
Copyright (c) 2009-2011 CWI
Copyright (c) 2009-2013 CWI

This comment has been minimized.

Copy link
@DavyLandman

DavyLandman Dec 24, 2012

Member

Future proof Vadim ;-)

(good commit btw!)

All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
Expand All @@ -12,7 +12,7 @@ extend lang::std::Whitespace;
extend lang::std::Comment;

layout Standard
= WhitespaceOrComment* !>> [\ \t\n\f\r] !>> "//";
= WhitespaceOrComment* !>> [\u0009-\u000D \u0020 \u0085 \u00A0 \u1680 \u180E \u2000-\u200A \u2028 \u2029 \u202F \u205F \u3000] !>> "//";

This comment has been minimized.

Copy link
@DavyLandman

DavyLandman Dec 24, 2012

Member

maybe a bit to much in the class?

if I look here: c23269a#L6R525 it seems I left out some ranges... not sure why again, but there was a good reason..


syntax WhitespaceOrComment
= whitespace: Whitespace
Expand Down

0 comments on commit b42b710

Please sign in to comment.