From 98cc71c02f82aceb8cfad57c896199d42b6c2ce7 Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Mon, 13 Mar 2023 18:01:18 +0100 Subject: [PATCH] RakuAST: remove "repr" It is not needed by default --- t/12-rakuast/package.rakutest | 4 ---- 1 file changed, 4 deletions(-) diff --git a/t/12-rakuast/package.rakutest b/t/12-rakuast/package.rakutest index ce6361e7563..3d47b0adf66 100644 --- a/t/12-rakuast/package.rakutest +++ b/t/12-rakuast/package.rakutest @@ -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'; @@ -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( @@ -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( @@ -220,7 +217,6 @@ module Enclosing { scope => 'our', declarator => 'class', name => RakuAST::Name.from-identifier($class), - repr => 'P6opaque' ) ), RakuAST::Statement::Expression.new(