(string_arg)
| 4 | |
| 5 | // Simple function, appends extra text on a string. |
| 6 | function test_function(string_arg) { |
| 7 | return "Function called with: " + string_arg; |
| 8 | }; |
| 9 | |
| 10 | // Register with SQLite. |
| 11 | db.create_function("TestFunction", test_function); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…