Skip to content

Commit

Permalink
RakuAST: remove "repr"
Browse files Browse the repository at this point in the history
It is not needed by default
  • Loading branch information
lizmat committed Mar 13, 2023
1 parent 38c4e0e commit 98cc71c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions t/12-rakuast/package.rakutest
Expand Up @@ -19,7 +19,6 @@ subtest 'Create an empty class' => {
scope => 'my',
declarator => 'class',
name => RakuAST::Name.from-identifier('MyTestClass'),
repr => 'P6opaque'
);
is-deeply $deparsed, 'my class MyTestClass { }', 'deparse';

Expand Down Expand Up @@ -139,7 +138,6 @@ subtest 'Check lexically resolving of a class' => {
scope => 'my',
declarator => 'class',
name => RakuAST::Name.from-identifier('LexicalTestClass'),
repr => 'P6opaque'
)
),
RakuAST::Statement::Expression.new(
Expand Down Expand Up @@ -178,7 +176,6 @@ subtest 'Check globally resolving of a class' => {
scope => 'our',
declarator => 'class',
name => RakuAST::Name.from-identifier($class),
repr => 'P6opaque'
)
),
RakuAST::Statement::Expression.new(
Expand Down Expand Up @@ -220,7 +217,6 @@ module Enclosing {
scope => 'our',
declarator => 'class',
name => RakuAST::Name.from-identifier($class),
repr => 'P6opaque'
)
),
RakuAST::Statement::Expression.new(
Expand Down

0 comments on commit 98cc71c

Please sign in to comment.