Return object as STRING expression (string literal constant).
(obj, kind=1)
| 986 | |
| 987 | |
| 988 | def as_string(obj, kind=1): |
| 989 | """Return object as STRING expression (string literal constant). |
| 990 | """ |
| 991 | return Expr(Op.STRING, (obj, kind)) |
| 992 | |
| 993 | |
| 994 | def as_array(obj): |
searching dependent graphs…