Compile AS3 @identifier asdoc tag as identifier replacement

This commit is contained in:
Jindra Petřík
2025-07-25 19:08:38 +02:00
parent 90a82a538a
commit e44e2eaa2b
20 changed files with 2674 additions and 898 deletions

View File

@@ -0,0 +1,44 @@
/*
* Copyright (C) 2010-2025 JPEXS, All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3.0 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
*/
package com.jpexs.decompiler.flash.asdoc;
import java.util.List;
import org.testng.annotations.Test;
import static org.testng.Assert.*;
/**
*
* @author JPEXS
*/
public class ActionScriptDocParserTest {
@Test
public void testParseDoc() {
ActionScriptDocParser parser = new ActionScriptDocParser();
List<AsDocComment> comments = parser.parse("var a = 5; /** First text \n"
+ " * second line\n"
+ " * @tag1 First tag\n"
+ " * @secondTag Second\n"
+ " * tag\n"
+ " */"
+ "a = a + 2;");
assertTrue(comments.size() == 1);
String actual = comments.get(0).toString();
assertEquals(actual, "First text second line\n" +
"@tag First tag\n" +
"@secondTag Secondtag\n");
}
}