mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 18:42:02 +00:00
Compile AS3 @identifier asdoc tag as identifier replacement
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user