pine-parser 0.2.1

Parser for Pine Script.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@version=4

// Multiline with leading operator (operator at start of continuation line)
result = "Hello"
     + " World"
     + " Test"

value = 10
     + 20
     + 30

text = "Line 1"
     + "\nLine 2"
     + "\nLine 3"