This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
commit a29bfeda1cc522b193a6293b46861b22affe6828 Author: Josh Tynjala <[email protected]> AuthorDate: Tue Oct 18 13:49:49 2022 -0700 fix royale.dependent.tests after commit 749763d1757b7afe759967092150b59bb520fc8c fixed start position of attribute content --- .../internal/codegen/mxml/sourcemaps/TestSourceMapMXMLEvents.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/mxml/sourcemaps/TestSourceMapMXMLEvents.java b/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/mxml/sourcemaps/TestSourceMapMXMLEvents.java index c5067fe00..966409d23 100644 --- a/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/mxml/sourcemaps/TestSourceMapMXMLEvents.java +++ b/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/mxml/sourcemaps/TestSourceMapMXMLEvents.java @@ -37,7 +37,7 @@ public class TestSourceMapMXMLEvents extends RoyaleSourceMapTestBase .getAncestorOfType(IMXMLDocumentNode.class); mxmlBlockWalker.walk(dnode); ///event - assertMapping(node, 0, 6, 74, 2, 74, 7); // event + assertMapping(node, 0, 7, 74, 2, 74, 7); // event //the start column in the ActionScript seems to be outside the quote //instead of inside. that seems like a bug. -JT }
