Make test classes and methods package-private

This commit is contained in:
Andreas Dangel
2023-01-17 15:41:31 +01:00
parent d5b3478c8a
commit c23ecab2c6
16 changed files with 52 additions and 58 deletions

View File

@ -12,7 +12,7 @@ import org.junit.jupiter.api.Test;
class ASTFunctionNodeTest extends EcmascriptParserTestBase {
@Test
public void testGetBody() {
void testGetBody() {
ASTAstRoot node = js.parse("function foo() { var a = 'a'; }");
ASTFunctionNode fn = node.getFirstDescendantOfType(ASTFunctionNode.class);
assertFalse(fn.isClosure());