Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/cm_modes/php.js

Issue 2166603002: DevTools: roll CodeMirror (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert unnecessary typeIn change Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // CodeMirror, copyright (c) by Marijn Haverbeke and others 1 // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 // Distributed under an MIT license: http://codemirror.net/LICENSE 2 // Distributed under an MIT license: http://codemirror.net/LICENSE
3 3
4 (function(mod) { 4 (function(mod) {
5 if (typeof exports == "object" && typeof module == "object") // CommonJS 5 if (typeof exports == "object" && typeof module == "object") // CommonJS
6 mod(require("../../lib/codemirror"), require("../htmlmixed/htmlmixed"), requ ire("../clike/clike")); 6 mod(require("../../lib/codemirror"), require("../htmlmixed/htmlmixed"), requ ire("../clike/clike"));
7 else if (typeof define == "function" && define.amd) // AMD 7 else if (typeof define == "function" && define.amd) // AMD
8 define(["../../lib/codemirror", "../htmlmixed/htmlmixed", "../clike/clike"], mod); 8 define(["../../lib/codemirror", "../htmlmixed/htmlmixed", "../clike/clike"], mod);
9 else // Plain browser env 9 else // Plain browser env
10 mod(CodeMirror); 10 mod(CodeMirror);
11 })(function(CodeMirror) { 11 })(function(CodeMirror) {
12 "use strict"; 12 "use strict";
13 13
14 function keywords(str) { 14 function keywords(str) {
15 var obj = {}, words = str.split(" "); 15 var obj = {}, words = str.split(" ");
16 for (var i = 0; i < words.length; ++i) obj[words[i]] = true; 16 for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
17 return obj; 17 return obj;
18 } 18 }
19 function heredoc(delim) { 19
20 return function(stream, state) { 20 // Helper for phpString
21 if (stream.match(delim)) state.tokenize = null; 21 function matchSequence(list, end, escapes) {
22 else stream.skipToEnd(); 22 if (list.length == 0) return phpString(end);
23 return function (stream, state) {
24 var patterns = list[0];
25 for (var i = 0; i < patterns.length; i++) if (stream.match(patterns[i][0]) ) {
26 state.tokenize = matchSequence(list.slice(1), end);
27 return patterns[i][1];
28 }
29 state.tokenize = phpString(end, escapes);
23 return "string"; 30 return "string";
24 }; 31 };
25 } 32 }
26 33 function phpString(closing, escapes) {
27 // Helper for stringWithEscapes 34 return function(stream, state) { return phpString_(stream, state, closing, e scapes); };
28 function matchSequence(list) {
29 if (list.length == 0) return stringWithEscapes;
30 return function (stream, state) {
31 var patterns = list[0];
32 for (var i = 0; i < patterns.length; i++) if (stream.match(patterns[i][0]) ) {
33 state.tokenize = matchSequence(list.slice(1));
34 return patterns[i][1];
35 }
36 state.tokenize = stringWithEscapes;
37 return "string";
38 };
39 } 35 }
40 function stringWithEscapes(stream, state) { 36 function phpString_(stream, state, closing, escapes) {
41 var escaped = false, next, end = false;
42
43 if (stream.current() == '"') return "string";
44
45 // "Complex" syntax 37 // "Complex" syntax
46 if (stream.match("${", false) || stream.match("{$", false)) { 38 if (escapes !== false && stream.match("${", false) || stream.match("{$", fal se)) {
47 state.tokenize = null; 39 state.tokenize = null;
48 return "string"; 40 return "string";
49 } 41 }
50 42
51 // Simple syntax 43 // Simple syntax
52 if (stream.match(/\$[a-zA-Z_][a-zA-Z0-9_]*/)) { 44 if (escapes !== false && stream.match(/^\$[a-zA-Z_][a-zA-Z0-9_]*/)) {
53 // After the variable name there may appear array or object operator. 45 // After the variable name there may appear array or object operator.
54 if (stream.match("[", false)) { 46 if (stream.match("[", false)) {
55 // Match array operator 47 // Match array operator
56 state.tokenize = matchSequence([ 48 state.tokenize = matchSequence([
57 [["[", null]], 49 [["[", null]],
58 [[/\d[\w\.]*/, "number"], 50 [[/\d[\w\.]*/, "number"],
59 [/\$[a-zA-Z_][a-zA-Z0-9_]*/, "variable-2"], 51 [/\$[a-zA-Z_][a-zA-Z0-9_]*/, "variable-2"],
60 [/[\w\$]+/, "variable"]], 52 [/[\w\$]+/, "variable"]],
61 [["]", null]] 53 [["]", null]]
62 ]); 54 ], closing, escapes);
63 } 55 }
64 if (stream.match(/\-\>\w/, false)) { 56 if (stream.match(/\-\>\w/, false)) {
65 // Match object operator 57 // Match object operator
66 state.tokenize = matchSequence([ 58 state.tokenize = matchSequence([
67 [["->", null]], 59 [["->", null]],
68 [[/[\w]+/, "variable"]] 60 [[/[\w]+/, "variable"]]
69 ]); 61 ], closing, escapes);
70 } 62 }
71 return "variable-2"; 63 return "variable-2";
72 } 64 }
73 65
66 var escaped = false;
74 // Normal string 67 // Normal string
75 while ( 68 while (!stream.eol() &&
76 !stream.eol() && 69 (escaped || escapes === false ||
77 (!stream.match("{$", false)) && 70 (!stream.match("{$", false) &&
78 (!stream.match(/(\$[a-zA-Z_][a-zA-Z0-9_]*|\$\{)/, false) || escaped) 71 !stream.match(/^(\$[a-zA-Z_][a-zA-Z0-9_]*|\$\{)/, false)))) {
79 ) { 72 if (!escaped && stream.match(closing)) {
80 next = stream.next(); 73 state.tokenize = null;
81 if (!escaped && next == '"') { end = true; break; } 74 state.tokStack.pop(); state.tokStack.pop();
82 escaped = !escaped && next == "\\"; 75 break;
83 } 76 }
84 if (end) { 77 escaped = stream.next() == "\\" && !escaped;
85 state.tokenize = null;
86 state.phpEncapsStack.pop();
87 } 78 }
88 return "string"; 79 return "string";
89 } 80 }
90 81
91 var phpKeywords = "abstract and array as break case catch class clone const co ntinue declare default " + 82 var phpKeywords = "abstract and array as break case catch class clone const co ntinue declare default " +
92 "do else elseif enddeclare endfor endforeach endif endswitch endwhile extend s final " + 83 "do else elseif enddeclare endfor endforeach endif endswitch endwhile extend s final " +
93 "for foreach function global goto if implements interface instanceof namespa ce " + 84 "for foreach function global goto if implements interface instanceof namespa ce " +
94 "new or private protected public static switch throw trait try use var while xor " + 85 "new or private protected public static switch throw trait try use var while xor " +
95 "die echo empty exit eval include include_once isset list require require_on ce return " + 86 "die echo empty exit eval include include_once isset list require require_on ce return " +
96 "print unset __halt_compiler self static parent yield insteadof finally"; 87 "print unset __halt_compiler self static parent yield insteadof finally";
97 var phpAtoms = "true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __L INE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__"; 88 var phpAtoms = "true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __L INE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__";
98 var phpBuiltin = "func_num_args func_get_arg func_get_args strlen strcmp strnc mp strcasecmp strncasecmp each error_reporting define defined trigger_error user _error set_error_handler restore_error_handler get_declared_classes get_loaded_e xtensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmd ate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities htm l_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirna me pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_wo rd_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashe s addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim st rip_tags similar_text explode implode setlocale localeconv parse_str str_pad cho p strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urlde code rawurlencode rawurldecode readlink linkinfo link unlink exec system escapes hellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getra ndmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex bas e_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gett imeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var mag ic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes _runtime import_request_variables error_log serialize unserialize memory_get_usa ge var_dump var_export debug_zval_dump print_r highlight_file show_source highli ght_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path se t_include_path restore_include_path setcookie header headers_sent connection_abo rted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_up loaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_stri ng is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spli ti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fget c fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite f puts mkdir rename copy tempnam tmpfile file file_get_contents stream_select stre am_context_create stream_context_set_params stream_context_set_option stream_con text_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_me ta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_b locking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_ wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpat h fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir ch dir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode fi lemtime fileowner fileperms filesize filetype file_exists is_writable is_writeab le is_readable is_executable is_file is_dir is_link stat lstat chown touch clear statcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implic it_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rso rt usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort a rray_push array_pop array_shift array_unshift array_splice array_slice array_mer ge array_merge_recursive array_keys array_values array_count_values array_revers e array_reduce array_pad array_flip array_change_key_case array_rand array_uniqu e array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum ar ray_filter array_map array_chunk array_key_exists pos sizeof key_exists assert a ssert_options version_compare ftok str_rot13 aggregate session_name session_modu le_name session_save_path session_id session_regenerate_id session_decode sessio n_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter se ssion_cache_expire session_set_cookie_params session_get_cookie_params session_w rite_close preg_match preg_match_all preg_replace preg_replace_callback preg_spl it preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_x digit virtual apache_request_headers apache_note apache_lookup_uri apache_child_ terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_ drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_l ist_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_ affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql _fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_see k mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql _field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_c lient_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info my sql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fiel dlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables m ysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_c onnect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connectio n_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_que ry pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg _fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_resu lt_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_ field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_no tify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_ copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo _open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_expor t pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_cl ient_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numro ws pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtle n pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg _loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_co de get_declared_traits getimagesizefromstring socket_import_stream stream_set_ch unk_size trait_exists header_register_callback class_uses session_status session _register_shutdown echo print global static exit array empty eval isset unset di e include require include_once require_once"; 89 var phpBuiltin = "func_num_args func_get_arg func_get_args strlen strcmp strnc mp strcasecmp strncasecmp each error_reporting define defined trigger_error user _error set_error_handler restore_error_handler get_declared_classes get_loaded_e xtensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmd ate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities htm l_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirna me pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_wo rd_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashe s addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim st rip_tags similar_text explode implode setlocale localeconv parse_str str_pad cho p strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urlde code rawurlencode rawurldecode readlink linkinfo link unlink exec system escapes hellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getra ndmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex bas e_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gett imeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var mag ic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes _runtime import_request_variables error_log serialize unserialize memory_get_usa ge var_dump var_export debug_zval_dump print_r highlight_file show_source highli ght_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path se t_include_path restore_include_path setcookie header headers_sent connection_abo rted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_up loaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_stri ng is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spli ti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fget c fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite f puts mkdir rename copy tempnam tmpfile file file_get_contents file_put_contents stream_select stream_context_create stream_context_set_params stream_context_set _option stream_context_get_options stream_filter_prepend stream_filter_append fg etcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blo cking stream_set_blocking socket_set_blocking stream_get_meta_data stream_regist er_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_ get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt o pendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime file group fileinode filemtime fileowner fileperms filesize filetype file_exists is_w ritable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_ clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_ contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort aso rt arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice arr ay_slice array_merge array_merge_recursive array_keys array_values array_count_v alues array_reverse array_reduce array_pad array_flip array_change_key_case arra y_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_ assoc array_sum array_filter array_map array_chunk array_key_exists array_inters ect_key array_combine array_column pos sizeof key_exists assert assert_options v ersion_compare ftok str_rot13 aggregate session_name session_module_name session _save_path session_id session_regenerate_id session_decode session_register sess ion_unregister session_is_registered session_encode session_start session_destro y session_unset session_set_save_handler session_cache_limiter session_cache_exp ire session_set_cookie_params session_get_cookie_params session_write_close preg _match preg_match_all preg_replace preg_replace_callback preg_split preg_quote p reg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ct ype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual a pache_request_headers apache_note apache_lookup_uri apache_child_terminate apach e_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_q uery mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysq l_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows m ysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysq l_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_l engths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mys ql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_s tring mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_ info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fiel dtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresu lt mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconn ect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_qu ery pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object p g_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_fr ee_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_fi eld_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_clo se pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg _lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding p g_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_s elect pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnul l pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_locl ose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared _traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_ exists header_register_callback class_uses session_status session_register_shutd own echo print global static exit array empty eval isset unset die include requi re include_once require_once json_decode json_encode json_last_error json_last_e rror_msg curl_close curl_copy_handle curl_errno curl_error curl_escape curl_exec curl_file_create curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_ multi_remove_handle curl_multi_select curl_multi_setopt curl_multi_strerror curl _pause curl_reset curl_setopt_array curl_setopt curl_share_close curl_share_init curl_share_setopt curl_strerror curl_unescape curl_version mysqli_affected_rows mysqli_autocommit mysqli_change_user mysqli_character_set_name mysqli_close mys qli_commit mysqli_connect_errno mysqli_connect_error mysqli_connect mysqli_data_ seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error_list mysqli_e rror mysqli_fetch_all mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field_d irect mysqli_fetch_field mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_o bject mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell my sqli_free_result mysqli_get_charset mysqli_get_client_info mysqli_get_client_sta ts mysqli_get_client_version mysqli_get_connection_stats mysqli_get_host_info my sqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysql i_real_query mysqli_reap_async_query mysqli_refresh mysqli_rollback mysqli_selec t_db mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_ handler mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_init mysqli_store _result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_cou nt";
99 CodeMirror.registerHelper("hintWords", "php", [phpKeywords, phpAtoms, phpBuilt in].join(" ").split(" ")); 90 CodeMirror.registerHelper("hintWords", "php", [phpKeywords, phpAtoms, phpBuilt in].join(" ").split(" "));
100 CodeMirror.registerHelper("wordChars", "php", /[\\w$]/); 91 CodeMirror.registerHelper("wordChars", "php", /[\w$]/);
101 92
102 var phpConfig = { 93 var phpConfig = {
103 name: "clike", 94 name: "clike",
104 helperType: "php", 95 helperType: "php",
105 keywords: keywords(phpKeywords), 96 keywords: keywords(phpKeywords),
106 blockKeywords: keywords("catch do else elseif for foreach if switch try whil e finally"), 97 blockKeywords: keywords("catch do else elseif for foreach if switch try whil e finally"),
98 defKeywords: keywords("class function interface namespace trait"),
107 atoms: keywords(phpAtoms), 99 atoms: keywords(phpAtoms),
108 builtin: keywords(phpBuiltin), 100 builtin: keywords(phpBuiltin),
109 multiLineStrings: true, 101 multiLineStrings: true,
110 hooks: { 102 hooks: {
111 "$": function(stream) { 103 "$": function(stream) {
112 stream.eatWhile(/[\w\$_]/); 104 stream.eatWhile(/[\w\$_]/);
113 return "variable-2"; 105 return "variable-2";
114 }, 106 },
115 "<": function(stream, state) { 107 "<": function(stream, state) {
116 if (stream.match(/<</)) { 108 var before;
109 if (before = stream.match(/<<\s*/)) {
110 var quoted = stream.eat(/['"]/);
117 stream.eatWhile(/[\w\.]/); 111 stream.eatWhile(/[\w\.]/);
118 state.tokenize = heredoc(stream.current().slice(3)); 112 var delim = stream.current().slice(before[0].length + (quoted ? 2 : 1) );
119 return state.tokenize(stream, state); 113 if (quoted) stream.eat(quoted);
114 if (delim) {
115 (state.tokStack || (state.tokStack = [])).push(delim, 0);
116 state.tokenize = phpString(delim, quoted != "'");
117 return "string";
118 }
120 } 119 }
121 return false; 120 return false;
122 }, 121 },
123 "#": function(stream) { 122 "#": function(stream) {
124 while (!stream.eol() && !stream.match("?>", false)) stream.next(); 123 while (!stream.eol() && !stream.match("?>", false)) stream.next();
125 return "comment"; 124 return "comment";
126 }, 125 },
127 "/": function(stream) { 126 "/": function(stream) {
128 if (stream.eat("/")) { 127 if (stream.eat("/")) {
129 while (!stream.eol() && !stream.match("?>", false)) stream.next(); 128 while (!stream.eol() && !stream.match("?>", false)) stream.next();
130 return "comment"; 129 return "comment";
131 } 130 }
132 return false; 131 return false;
133 }, 132 },
134 '"': function(stream, state) { 133 '"': function(_stream, state) {
135 if (!state.phpEncapsStack) 134 (state.tokStack || (state.tokStack = [])).push('"', 0);
136 state.phpEncapsStack = []; 135 state.tokenize = phpString('"');
137 state.phpEncapsStack.push(0); 136 return "string";
138 state.tokenize = stringWithEscapes;
139 return state.tokenize(stream, state);
140 }, 137 },
141 "{": function(_stream, state) { 138 "{": function(_stream, state) {
142 if (state.phpEncapsStack && state.phpEncapsStack.length > 0) 139 if (state.tokStack && state.tokStack.length)
143 state.phpEncapsStack[state.phpEncapsStack.length - 1]++; 140 state.tokStack[state.tokStack.length - 1]++;
144 return false; 141 return false;
145 }, 142 },
146 "}": function(_stream, state) { 143 "}": function(_stream, state) {
147 if (state.phpEncapsStack && state.phpEncapsStack.length > 0) 144 if (state.tokStack && state.tokStack.length > 0 &&
148 if (--state.phpEncapsStack[state.phpEncapsStack.length - 1] == 0) 145 !--state.tokStack[state.tokStack.length - 1]) {
149 state.tokenize = stringWithEscapes; 146 state.tokenize = phpString(state.tokStack[state.tokStack.length - 2]);
147 }
150 return false; 148 return false;
151 } 149 }
152 } 150 }
153 }; 151 };
154 152
155 CodeMirror.defineMode("php", function(config, parserConfig) { 153 CodeMirror.defineMode("php", function(config, parserConfig) {
156 var htmlMode = CodeMirror.getMode(config, "text/html"); 154 var htmlMode = CodeMirror.getMode(config, "text/html");
157 var phpMode = CodeMirror.getMode(config, phpConfig); 155 var phpMode = CodeMirror.getMode(config, phpConfig);
158 156
159 function dispatch(stream, state) { 157 function dispatch(stream, state) {
160 var isPHP = state.curMode == phpMode; 158 var isPHP = state.curMode == phpMode;
161 if (stream.sol() && state.pending && state.pending != '"' && state.pending != "'") state.pending = null; 159 if (stream.sol() && state.pending && state.pending != '"' && state.pending != "'") state.pending = null;
162 if (!isPHP) { 160 if (!isPHP) {
163 if (stream.match(/^<\?\w*/)) { 161 if (stream.match(/^<\?\w*/)) {
164 state.curMode = phpMode; 162 state.curMode = phpMode;
163 if (!state.php) state.php = CodeMirror.startState(phpMode, htmlMode.in dent(state.html, ""))
165 state.curState = state.php; 164 state.curState = state.php;
166 return "meta"; 165 return "meta";
167 } 166 }
168 if (state.pending == '"' || state.pending == "'") { 167 if (state.pending == '"' || state.pending == "'") {
169 while (!stream.eol() && stream.next() != state.pending) {} 168 while (!stream.eol() && stream.next() != state.pending) {}
170 var style = "string"; 169 var style = "string";
171 } else if (state.pending && stream.pos < state.pending.end) { 170 } else if (state.pending && stream.pos < state.pending.end) {
172 stream.pos = state.pending.end; 171 stream.pos = state.pending.end;
173 var style = state.pending.style; 172 var style = state.pending.style;
174 } else { 173 } else {
175 var style = htmlMode.token(stream, state.curState); 174 var style = htmlMode.token(stream, state.curState);
176 } 175 }
177 if (state.pending) state.pending = null; 176 if (state.pending) state.pending = null;
178 var cur = stream.current(), openPHP = cur.search(/<\?/), m; 177 var cur = stream.current(), openPHP = cur.search(/<\?/), m;
179 if (openPHP != -1) { 178 if (openPHP != -1) {
180 if (style == "string" && (m = cur.match(/[\'\"]$/)) && !/\?>/.test(cur )) state.pending = m[0]; 179 if (style == "string" && (m = cur.match(/[\'\"]$/)) && !/\?>/.test(cur )) state.pending = m[0];
181 else state.pending = {end: stream.pos, style: style}; 180 else state.pending = {end: stream.pos, style: style};
182 stream.backUp(cur.length - openPHP); 181 stream.backUp(cur.length - openPHP);
183 } 182 }
184 return style; 183 return style;
185 } else if (isPHP && state.php.tokenize == null && stream.match("?>")) { 184 } else if (isPHP && state.php.tokenize == null && stream.match("?>")) {
186 state.curMode = htmlMode; 185 state.curMode = htmlMode;
187 state.curState = state.html; 186 state.curState = state.html;
187 if (!state.php.context.prev) state.php = null;
188 return "meta"; 188 return "meta";
189 } else { 189 } else {
190 return phpMode.token(stream, state.curState); 190 return phpMode.token(stream, state.curState);
191 } 191 }
192 } 192 }
193 193
194 return { 194 return {
195 startState: function() { 195 startState: function() {
196 var html = CodeMirror.startState(htmlMode), php = CodeMirror.startState( phpMode); 196 var html = CodeMirror.startState(htmlMode)
197 var php = parserConfig.startOpen ? CodeMirror.startState(phpMode) : null
197 return {html: html, 198 return {html: html,
198 php: php, 199 php: php,
199 curMode: parserConfig.startOpen ? phpMode : htmlMode, 200 curMode: parserConfig.startOpen ? phpMode : htmlMode,
200 curState: parserConfig.startOpen ? php : html, 201 curState: parserConfig.startOpen ? php : html,
201 pending: null}; 202 pending: null};
202 }, 203 },
203 204
204 copyState: function(state) { 205 copyState: function(state) {
205 var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html), 206 var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html),
206 php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur; 207 php = state.php, phpNew = php && CodeMirror.copyState(phpMode, php), cur;
207 if (state.curMode == htmlMode) cur = htmlNew; 208 if (state.curMode == htmlMode) cur = htmlNew;
208 else cur = phpNew; 209 else cur = phpNew;
209 return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cu r, 210 return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cu r,
210 pending: state.pending}; 211 pending: state.pending};
211 }, 212 },
212 213
213 token: dispatch, 214 token: dispatch,
214 215
215 indent: function(state, textAfter) { 216 indent: function(state, textAfter) {
216 if ((state.curMode != phpMode && /^\s*<\//.test(textAfter)) || 217 if ((state.curMode != phpMode && /^\s*<\//.test(textAfter)) ||
217 (state.curMode == phpMode && /^\?>/.test(textAfter))) 218 (state.curMode == phpMode && /^\?>/.test(textAfter)))
218 return htmlMode.indent(state.html, textAfter); 219 return htmlMode.indent(state.html, textAfter);
219 return state.curMode.indent(state.curState, textAfter); 220 return state.curMode.indent(state.curState, textAfter);
220 }, 221 },
221 222
222 blockCommentStart: "/*", 223 blockCommentStart: "/*",
223 blockCommentEnd: "*/", 224 blockCommentEnd: "*/",
224 lineComment: "//", 225 lineComment: "//",
225 226
226 innerMode: function(state) { return {state: state.curState, mode: state.cu rMode}; } 227 innerMode: function(state) { return {state: state.curState, mode: state.cu rMode}; }
227 }; 228 };
228 }, "htmlmixed", "clike"); 229 }, "htmlmixed", "clike");
229 230
230 CodeMirror.defineMIME("application/x-httpd-php", "php"); 231 CodeMirror.defineMIME("application/x-httpd-php", "php");
231 CodeMirror.defineMIME("application/x-httpd-php-open", {name: "php", startOpen: true}); 232 CodeMirror.defineMIME("application/x-httpd-php-open", {name: "php", startOpen: true});
232 CodeMirror.defineMIME("text/x-php", phpConfig); 233 CodeMirror.defineMIME("text/x-php", phpConfig);
233 }); 234 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698