SDA SE Wiki

Software Engineering for Smart Data Analytics & Smart Data Analytics for Software Engineering

User Tools

Site Tools



literalT(#id, #parent, #encl, TYPE, 'value')

Represents the literal node (boolean literal, character literal, number literal, string literal, type literal)

Arguments

#id: id
the unique ID assigned to this fact.

#parent: id
ID of the parent node.

#encl: methodT, constructorT, classInitializerT, fieldT, classT, annotationMemberT
ID of the fact that represents the enclosing element.

TYPE: typeterm
type of the literal

'value': atom
the value of this literal.

Sample Java Code

class HelloWorld  { 
  public static void main(String[] args){
    System.out.println("Hello World!");    //literalT: "Hello World!"
  }
}

Its PEF Representation

methodT(#encl, ..., 'main', ..., type(basic, void, 0), [], ...).
callT(#parent, .., #encl, ..., 'println', [#id], ...),
literalT(#id, #parent, #encl, type(class, #String, 0), 'Hello World!').

AST Specification

ast_node_def('Java',literalT,[
     ast_arg(id,      mult(1,1,no ), id,  [literalT]), % <-- convention!!!
     ast_arg(parent,  mult(1,1,no ), id,  [id]), % <-- convention!!!
     ast_arg(encl,    mult(1,1,no ), id,  [methodT, constructorT, classInitializerT, fieldT, classT, annotationMemberT]),
     ast_arg(type,    mult(1,1,no ), attr,  [typeTermType]),
     ast_arg(value,   mult(1,1,no ), attr,  [atom])
]).
research/jtransformer/api/java/pefs/2.9/literalt.txt · Last modified: 2018/05/09 01:59 (external edit)

SEWiki, © 2025