File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
2/library-tests/ControlFlow/Exceptions
3/library-tests/ControlFlow/Exceptions Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
2
2
import python
3
3
4
- from ExceptFlowNode ex , Object obj
5
- where ex .handledException_objectapi ( obj , _, _)
6
- select ex .getLocation ( ) .getStartLine ( ) , ex .toString ( ) , obj .toString ( )
4
+ from ExceptFlowNode ex , Value val
5
+ where ex .handledException ( val , _, _)
6
+ select ex .getLocation ( ) .getStartLine ( ) , ex .toString ( ) , val .toString ( )
Original file line number Diff line number Diff line change 1
1
2
2
import python
3
3
4
- from ExceptFlowNode ex , Object obj
5
- where ex .handledException_objectapi ( obj , _, _)
6
- select ex .getLocation ( ) .getStartLine ( ) , ex .toString ( ) , obj .toString ( )
4
+ from ExceptFlowNode ex , Value val
5
+ where ex .handledException ( val , _, _)
6
+ select ex .getLocation ( ) .getStartLine ( ) , ex .toString ( ) , val .toString ( )
Original file line number Diff line number Diff line change 1
1
import python
2
2
3
- from ExceptFlowNode ex , Object t
4
- where ex .handledException_objectapi ( t , _, _)
5
- select ex .getLocation ( ) .getStartLine ( ) , ex .toString ( ) , t .toString ( )
3
+ from ExceptFlowNode ex , Value val
4
+ where ex .handledException ( val , _, _)
5
+ select ex .getLocation ( ) .getStartLine ( ) , ex .toString ( ) , val .toString ( )
You can’t perform that action at this time.
0 commit comments