Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/rust
File: test.js
// CodeMirror, copyright (c) by Marijn Haverbeke and others
[0] Fix | Delete
// Distributed under an MIT license: http://codemirror.net/LICENSE
[1] Fix | Delete
[2] Fix | Delete
(function() {
[3] Fix | Delete
var mode = CodeMirror.getMode({indentUnit: 4}, "rust");
[4] Fix | Delete
function MT(name) {test.mode(name, mode, Array.prototype.slice.call(arguments, 1));}
[5] Fix | Delete
[6] Fix | Delete
MT('integer_test',
[7] Fix | Delete
'[number 123i32]',
[8] Fix | Delete
'[number 123u32]',
[9] Fix | Delete
'[number 123_u32]',
[10] Fix | Delete
'[number 0xff_u8]',
[11] Fix | Delete
'[number 0o70_i16]',
[12] Fix | Delete
'[number 0b1111_1111_1001_0000_i32]',
[13] Fix | Delete
'[number 0usize]');
[14] Fix | Delete
[15] Fix | Delete
MT('float_test',
[16] Fix | Delete
'[number 123.0f64]',
[17] Fix | Delete
'[number 0.1f64]',
[18] Fix | Delete
'[number 0.1f32]',
[19] Fix | Delete
'[number 12E+99_f64]');
[20] Fix | Delete
[21] Fix | Delete
MT('string-literals-test',
[22] Fix | Delete
'[string "foo"]',
[23] Fix | Delete
'[string r"foo"]',
[24] Fix | Delete
'[string "\\"foo\\""]',
[25] Fix | Delete
'[string r#""foo""#]',
[26] Fix | Delete
'[string "foo #\\"# bar"]',
[27] Fix | Delete
[28] Fix | Delete
'[string b"foo"]',
[29] Fix | Delete
'[string br"foo"]',
[30] Fix | Delete
'[string b"\\"foo\\""]',
[31] Fix | Delete
'[string br#""foo""#]',
[32] Fix | Delete
'[string br##"foo #" bar"##]',
[33] Fix | Delete
[34] Fix | Delete
"[string-2 'h']",
[35] Fix | Delete
"[string-2 b'h']");
[36] Fix | Delete
[37] Fix | Delete
})();
[38] Fix | Delete
[39] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function