Skip to content

String concatenation in lang::java::m3::AST; #1

Description

@mschouten1

Describe the bug
A concatenated string loses everything except for the first two parts.
To Reproduce
Define a string in Java:

String test = "Hello" + "beautiful" + "world";

Create an AST using lang::java::m3::Core and lang::java::m3::AST:

 M3 model = createM3FromMavenProject(projectLocation);
    list[Declaration] asts = [
        createAstFromFile(f, true)
        | f <- files(model.containment), isCompilationUnit(f)
    ];

Print the AST node containing the variable declaration statement.

Expected behavior
All parts of the string are present in the AST node.

Observed behavior
Only the first two parts of the string are present in the AST node.

declarationStatement(variables([],simpleType(id(\"String\")),[variable(id(\"test\"),[],plus(stringLiteral(\"\\\"Hello\\\"\"),stringLiteral(\"\\\"beautiful\\\"\")))]))

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions