0

i want to replace print(a) with print(a+b) in the following code.

void main(){
   String a ="hey";
   String b ="there"; 
   print(\$a);
}

cn is the AstNode & cn contains print($a)

Is their any way i can do this? Please help me, i am new to dart.

Rishab Jain
  • 269
  • 4
  • 16

1 Answers1

4

https://happystudiess.blogspot.in/2017/08/dart-replacing-node-in-abstract-syntax-tree.html

this is the link for the answer.

Rishab Jain
  • 269
  • 4
  • 16