Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove incorrect test
Per samcv++ from Raku/nqp@02a426e0e6

Remove support for ornate parenthesis from quoting constructs
Reasons:
* These are not recognized by Unicode as being brackets
* They do not conform to Pi/Pf or Ps/Pf general category pairings
* They don't have a Bidi_Mirroring_Glyph or a Bidi_Matching_Bracket pair
* They have never been considered brackets for any of the history of
  Perl 6, and they never will be considered brackets
* There are no modules which use these brackets, and no known users
* It is not easily versionable, and not feasible to make it versioned
  • Loading branch information
zoffixznet committed Oct 7, 2017
1 parent a4c41c2 commit d78ab87
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions S02-lexical-conventions/comments.t
Expand Up @@ -3,7 +3,7 @@ use v6.c;
# Test various forms of comments

use Test;
plan 51;
plan 50;

# L<S02/"Embedded Comments"/"Embedded comments"
# "#" plus any bracket>
Expand Down Expand Up @@ -57,7 +57,6 @@ plan 51;
is(55 #`⦓ pano ⦔ +89, 144, 'embedded comment with #⦓`⦔');
is(144 #`⦕ papa ⦖ +233, 377, 'embedded comment with #`⦕⦖');
is(377 #`『 pare 』 +610, 987, 'embedded comment with #`『』');
is(610 #`﴾ paci ﴿ +987, 1597, 'embedded comment with #`﴾﴿');
}

# L<S02/"Embedded Comments"/"no space" between "#" and bracket>
Expand Down

0 comments on commit d78ab87

Please sign in to comment.