StringLiteral constructor

StringLiteral(
  1. String value
)

Constructs a string literal with the string content.

Parameters:

  • value: The string content (without quotes)

Implementation

StringLiteral(String value) : super(value, []);