File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/util Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 43
43
import static com .oracle .graal .python .builtins .PythonBuiltinClassType .TypeError ;
44
44
45
45
import com .oracle .graal .python .builtins .PythonBuiltinClassType ;
46
- import com .oracle .graal .python .builtins .objects .floats .PFloat ;
47
46
import com .oracle .graal .python .nodes .PGuards ;
48
47
import com .oracle .graal .python .nodes .PNodeWithContext ;
49
48
import com .oracle .graal .python .nodes .PRaiseNode ;
@@ -96,11 +95,6 @@ static String doLong(long x) {
96
95
return Long .toString (x );
97
96
}
98
97
99
- @ Specialization
100
- static String doDouble (double x ) {
101
- return PFloat .doubleToString (x );
102
- }
103
-
104
98
@ Specialization
105
99
static Object doGeneric (VirtualFrame frame , Object x ,
106
100
@ Cached ("create(__STR__)" ) LookupAndCallUnaryNode callStrNode ,
You can’t perform that action at this time.
0 commit comments