pine-parser 0.2.2

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

// Two separate if statements at different scopes
x = 10
y = 5

if x > y
    z = 1
    if x == 10
        a = 100
    else
        a = 200