github-linguist 4.8.0 → 4.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/grammars/source.assembly.json +121 -0
- data/grammars/source.gdscript.json +102 -7
- data/grammars/source.papyrus.skyrim.json +1328 -0
- data/grammars/source.pawn.json +736 -0
- data/grammars/source.perl6fe.json +1 -1
- data/grammars/source.puppet.json +47 -101
- data/grammars/source.renpy.json +2 -2
- data/grammars/source.shell.json +2 -1
- data/grammars/source.terra.json +146 -0
- data/grammars/source.toml.json +24 -1
- data/grammars/source.yaml.json +1 -0
- data/grammars/text.html.vue.json +0 -1
- data/lib/linguist/blob.rb +1 -1
- data/lib/linguist/heuristics.rb +1 -1
- data/lib/linguist/languages.json +1 -1
- data/lib/linguist/languages.yml +35 -12
- data/lib/linguist/lazy_blob.rb +1 -0
- data/lib/linguist/repository.rb +3 -0
- data/lib/linguist/samples.json +634 -157
- data/lib/linguist/shebang.rb +2 -2
- data/lib/linguist/version.rb +1 -1
- metadata +11 -19
- data/grammars/source.asm.x86.json +0 -182
- data/grammars/source.autoit.3.json +0 -132
- data/grammars/source.clips.json +0 -80
- data/grammars/source.compiled-papyrus.json +0 -11
- data/grammars/source.idris.json +0 -537
- data/grammars/source.inno.json +0 -69
- data/grammars/source.nix.json +0 -1200
- data/grammars/source.papyrus-assembly.json +0 -266
- data/grammars/source.papyrus.json +0 -231
- data/grammars/source.plsql.oracle.json +0 -642
- data/grammars/source.scad.json +0 -152
- data/grammars/text.html.creole.json +0 -329
@@ -1,642 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"fileTypes": [
|
3
|
-
"sql",
|
4
|
-
"ddl",
|
5
|
-
"dml",
|
6
|
-
"pks",
|
7
|
-
"pkb"
|
8
|
-
],
|
9
|
-
"foldingStartMarker": "(?i)^\\s*(begin|if|loop)\\b",
|
10
|
-
"foldingStopMarker": "(?i)^\\s*(end)\\b",
|
11
|
-
"keyEquivalent": "^~S",
|
12
|
-
"name": "PL/SQL (Oracle)",
|
13
|
-
"patterns": [
|
14
|
-
{
|
15
|
-
"begin": "/\\*",
|
16
|
-
"end": "\\*/",
|
17
|
-
"name": "comment.block.oracle"
|
18
|
-
},
|
19
|
-
{
|
20
|
-
"match": "--.*$",
|
21
|
-
"name": "comment.line.double-dash.oracle"
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"captures": {
|
25
|
-
"1": {
|
26
|
-
"name": "keyword.other.oracle"
|
27
|
-
},
|
28
|
-
"2": {
|
29
|
-
"name": "keyword.other.oracle"
|
30
|
-
}
|
31
|
-
},
|
32
|
-
"match": "(?i)^\\s*(create)(\\s+or\\s+replace)?\\s+",
|
33
|
-
"name": "meta.create.oracle"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"captures": {
|
37
|
-
"1": {
|
38
|
-
"name": "keyword.other.oracle"
|
39
|
-
},
|
40
|
-
"2": {
|
41
|
-
"name": "keyword.other.oracle"
|
42
|
-
},
|
43
|
-
"3": {
|
44
|
-
"name": "entity.name.type.oracle"
|
45
|
-
}
|
46
|
-
},
|
47
|
-
"match": "(?i)\\b(package)(\\s+body)?\\s+(\\S+)",
|
48
|
-
"name": "meta.package.oracle"
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"captures": {
|
52
|
-
"1": {
|
53
|
-
"name": "keyword.other.oracle"
|
54
|
-
},
|
55
|
-
"2": {
|
56
|
-
"name": "entity.name.type.oracle"
|
57
|
-
}
|
58
|
-
},
|
59
|
-
"match": "(?i)\\b(trigger)\\s+(\\S+)",
|
60
|
-
"name": "meta.trigger.oracle"
|
61
|
-
},
|
62
|
-
{
|
63
|
-
"captures": {
|
64
|
-
"1": {
|
65
|
-
"name": "keyword.other.oracle"
|
66
|
-
},
|
67
|
-
"2": {
|
68
|
-
"name": "entity.name.type.oracle"
|
69
|
-
}
|
70
|
-
},
|
71
|
-
"match": "(?i)\\b(view)\\s+(\\S+)",
|
72
|
-
"name": "meta.view.oracle"
|
73
|
-
},
|
74
|
-
{
|
75
|
-
"captures": {
|
76
|
-
"1": {
|
77
|
-
"name": "keyword.other.oracle"
|
78
|
-
},
|
79
|
-
"2": {
|
80
|
-
"name": "entity.name.type.oracle"
|
81
|
-
}
|
82
|
-
},
|
83
|
-
"match": "(?i)\\b(type)\\s+(\\S+)",
|
84
|
-
"name": "meta.type.oracle"
|
85
|
-
},
|
86
|
-
{
|
87
|
-
"captures": {
|
88
|
-
"1": {
|
89
|
-
"name": "keyword.other.oracle"
|
90
|
-
},
|
91
|
-
"2": {
|
92
|
-
"name": "keyword.other.oracle"
|
93
|
-
},
|
94
|
-
"3": {
|
95
|
-
"name": "keyword.other.oracle"
|
96
|
-
},
|
97
|
-
"4": {
|
98
|
-
"name": "entity.name.function.oracle"
|
99
|
-
}
|
100
|
-
},
|
101
|
-
"match": "(?i)^\\s*(OVERRIDING)?\\s*(MEMBER|CONSTRUCTOR|STATIC)?\\s*(function|procedure)\\s+([-a-z0-9_]+)",
|
102
|
-
"name": "meta.procedure.oracle"
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"match": "[!<>:]?=|<>|<|>|\\+|(?<!\\.)\\*|-|(?<!^)/|\\|\\|",
|
106
|
-
"name": "keyword.operator.oracle"
|
107
|
-
},
|
108
|
-
{
|
109
|
-
"match": "(?i)\\b(true|false|null)\\b",
|
110
|
-
"name": "constant.language.oracle"
|
111
|
-
},
|
112
|
-
{
|
113
|
-
"match": "\\b\\d+(\\.\\d+)?\\b",
|
114
|
-
"name": "constant.numeric.oracle"
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"match": "(?i)\\b(references|foreign|primary|key|check|constraint|if|elsif|else|end\\s+if|loop|while|end\\s+loop|for|case|end\\s+case|continue|return|goto)\\b",
|
118
|
-
"name": "keyword.control.oracle"
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"match": "(?i)\\b(or|and|not|like)\\b",
|
122
|
-
"name": "keyword.operator.oracle"
|
123
|
-
},
|
124
|
-
{
|
125
|
-
"match": "(?i)\\b(sysdate|%(isopen|found|notfound|rowcount)|commit|rollback|sqlerrm|substr|cast|decode|length|lower|upper)\\b",
|
126
|
-
"name": "support.function.oracle"
|
127
|
-
},
|
128
|
-
{
|
129
|
-
"match": "(?i)\\b(abs|acos|add_months|appendchildxml|ascii|asciistr|asin|atan|atan2|bfilename|bin_to_num|bitand|cardinality|cast|ceil|chartorowid|chr|cluster_details|cluster_distance|cluster_id|cluster_probability|cluster_set|coalesce|collect|compose|con_dbid_to_id|con_guid_to_id|con_name_to_id|con_uid_to_id|concat|convert|cos|cosh|current_date|current_timestamp|dbtimezone|decode|decompose|deletexml|depth|dump|empty_blob|empty_clob|existsnode|exp|extract|extract|extractvalue|feature_details|feature_id|feature_set|feature_value|floor|from_tz|greatest|hextoraw|initcap|insertchildxml|insertchildxmlafter|insertchildxmlbefore|insertxmlafter|insertxmlbefore|instr|last_day|least|length|ln|lnnvl|localtimestamp|log|lower|lpad|ltrim|mod|months_between|nanvl|nanvl|nchr|new_time|next_day|nls_charset_decl_len|nls_charset_id|nls_charset_name|nls_initcap|nls_lower|nls_upper|nlssort|nullif|numtodsinterval|numtodsinterval|numtoyminterval|numtoyminterval|nvl|nvl2|ora_dst_affected|ora_dst_convert|ora_dst_error|ora_hash|ora_invoking_user|ora_invoking_userid|path|power|powermultiset|powermultiset_by_cardinality|prediction|prediction_bounds|prediction_cost|prediction_details|prediction_probability|prediction_set|rawtohex|rawtonhex|regexp_count|regexp_instr|regexp_replace|regexp_substr|remainder|replace|round|rowidtochar|rowidtonchar|rpad|rtrim|scn_to_timestamp|sessiontimezone|set|sign|sin|sinh|soundex|sqrt|standard_hash|substr|sys_connect_by_path|sys_context|sys_dburigen|sys_extract_utc|sys_guid|sys_typeid|sys_xmlagg|sys_xmlgen|sysdate|systimestamp|tan|tanh|timestamp_to_scn|to_binary_double|to_binary_float|to_blob|to_char|to_char|to_clob|to_date|to_dsinterval|to_dsinterval|to_lob|to_multi_byte|to_nchar|to_nclob|to_number|to_single_byte|to_timestamp|to_timestamp_tz|to_yminterval|translate|using|treat|trim|trunc|tz_offset|uid|unistr|updatexml|upper|user|userenv|vsize|width_bucket|xmlagg|xmlcast|xmlcdata|xmlcolattval|xmlcomment|xmlconcat|xmldiff|xmlelement|xmlexists|xmlforest|xmlisvalid|xmlparse|xmlpatch|xmlpi|xmlquery|xmlroot|xmlsequence|xmlserialize|xmltable|xmltransform|exception_init|raise_application_error)\\b",
|
130
|
-
"name": "support.function.sqlbuiltin.oracle"
|
131
|
-
},
|
132
|
-
{
|
133
|
-
"match": "(?i)\\b(avg|cluster_details|cluster_distance|cluster_id|cluster_probability|cluster_set|collect|corr|corr_k|corr_s|count|covar_pop|covar_samp|cube_table|cume_dist|cv|dataobj_to_partition|dense_rank|deref|feature_details|feature_id|feature_set|feature_value|first|first_value|group_id|grouping|grouping_id|iteration_number|lag|last|last_value|lead|listagg|make_ref|max|median|min|nth_value|ntile|percent_rank|percentile_cont|percentile_disc|prediction|prediction_cost|prediction_details|prediction_probability|prediction_set|presentnnv|presentv|previous|rank|ratio_to_report|ref|reftohex|regr_avgx|regr_avgy|regr_count|regr_intercept|regr_r2|regr_slope|regr_sxx|regr_sxy|regr_syy|row_number|stats_binomial_test|stats_crosstab|stats_f_test|stats_ks_test|stats_mode|stats_mw_test|stats_one_way_anova|stats_t_test_one|stats_t_test_paired|stats_t_test_indep|stats_t_test_indepu|stats_wsr_test|stddev|stddev_pop|stddev_samp|sum|sys_xmlagg|value|var_pop|var_samp|variance|xmlagg|inserting|deleting|updating)\\b",
|
134
|
-
"name": "support.function.sqlbuiltin.oracle"
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"match": "(?i)\\b(sql|sqlcode)\\b",
|
138
|
-
"name": "variable.language.oracle"
|
139
|
-
},
|
140
|
-
{
|
141
|
-
"match": "(?i)\\b(p(i|o|io|n|ar|v)_[-a-z0-9_]+)\\b",
|
142
|
-
"name": "variable.parameter.oracle"
|
143
|
-
},
|
144
|
-
{
|
145
|
-
"match": "(?i)\\b(l_[-a-z0-9_]+)\\b",
|
146
|
-
"name": "variable.other.oracle"
|
147
|
-
},
|
148
|
-
{
|
149
|
-
"match": "(?i):\\b(new|old)\\b",
|
150
|
-
"name": "variable.trigger.oracle"
|
151
|
-
},
|
152
|
-
{
|
153
|
-
"match": "(?i)\\b(end|then|deterministic|exception|when|exists|others|subtype|constant|range|declare|begin|in|out|to|is|as|exit|raise|cursor|record|open|fetch|into|close|%type|%rowtype|execute|comment|column|synonym|sequence|index\\s+by|start\\s+with|increment\\s+by|cache|pragma|grant|start|alter|database|datafile|autoextend|trigger|after|before|each|row|default|\\.(extend|count|first|last|next|nextval|currval|reverse))\\b",
|
154
|
-
"name": "keyword.other.oracle"
|
155
|
-
},
|
156
|
-
{
|
157
|
-
"match": "(?i)\\b(select|from|inner\\s+join|left\\s+join|left\\s+outer\\s+join|right\\s+join|right\\s+outer|join|full\\s+join|full\\s+outer\\s+join|on|off|where|order\\s+by|group\\s+by|asc|desc|update|set|insert|into|values|returning|delete|from|distinct|union|having|limit|table|of|drop|between)\\b",
|
158
|
-
"name": "keyword.other.sql.oracle"
|
159
|
-
},
|
160
|
-
{
|
161
|
-
"captures": {
|
162
|
-
"1": {
|
163
|
-
"name": "support.class.oracle"
|
164
|
-
},
|
165
|
-
"2": {
|
166
|
-
"name": "support.function.oracle"
|
167
|
-
}
|
168
|
-
},
|
169
|
-
"match": "(?i)\\b(dbms_debug\\.)(attach_session|continue|debug_off|debug_on|delete_breakpoint|delete_oer_breakpoint|detach_session|disable_breakpoint|enable_breakpoint|execute|get_indexes|get_more_source|get_line_map|get_runtime_info|get_timeout_behaviour|get_value|initialize|ping|print_backtrace|print_instantiations|probe_version|self_check|set_breakpoint|set_oer_breakpoint|set_timeout|set_timeout_behaviour|set_value|show_breakpoints|show_frame_source|show_source|synchronize|target_program_running)\\b",
|
170
|
-
"name": "support.class.oracle"
|
171
|
-
},
|
172
|
-
{
|
173
|
-
"captures": {
|
174
|
-
"1": {
|
175
|
-
"name": "support.class.oracle"
|
176
|
-
},
|
177
|
-
"2": {
|
178
|
-
"name": "support.function.oracle"
|
179
|
-
}
|
180
|
-
},
|
181
|
-
"match": "(?i)\\b(dbms_job\\.)(broken|change|instance|interval|next_date|remove|run|submit|user_export|what)\\b",
|
182
|
-
"name": "support.class.oracle"
|
183
|
-
},
|
184
|
-
{
|
185
|
-
"captures": {
|
186
|
-
"1": {
|
187
|
-
"name": "support.class.oracle"
|
188
|
-
},
|
189
|
-
"2": {
|
190
|
-
"name": "support.function.oracle"
|
191
|
-
}
|
192
|
-
},
|
193
|
-
"match": "(?i)\\b(dbms_lob\\.)(append|close|compare|converttoblob|converttoclob|copy|copy_dbfs_link|copy_from_dbfs_link|createtemporary|dbfs_link_generate_path|erase|fileclose|filecloseall|fileexists|filegetname|fileisopen|fileopen|fragment_delete|fragment_insert|fragment_move|fragment_replace|freetemporary|get_dbfs_link|get_dbfs_link_state|getchunksize|getcontenttype|getlength|getoptions |get_storage_limit|instr|isopen|issecurefile|istemporary|loadblobfromfile|loadclobfromfile|loadfromfile|move_to_dbfs_link|open|read|set_dbfs_link|setcontenttype|setoptions|substr|trim|write|writeappend)\\b",
|
194
|
-
"name": "support.class.oracle"
|
195
|
-
},
|
196
|
-
{
|
197
|
-
"captures": {
|
198
|
-
"1": {
|
199
|
-
"name": "support.class.oracle"
|
200
|
-
},
|
201
|
-
"2": {
|
202
|
-
"name": "support.function.oracle"
|
203
|
-
}
|
204
|
-
},
|
205
|
-
"match": "(?i)\\b(dbms_lock\\.)(allocate_unique|convert|release|request|sleep)\\b",
|
206
|
-
"name": "support.class.oracle"
|
207
|
-
},
|
208
|
-
{
|
209
|
-
"captures": {
|
210
|
-
"1": {
|
211
|
-
"name": "support.class.oracle"
|
212
|
-
},
|
213
|
-
"2": {
|
214
|
-
"name": "support.function.oracle"
|
215
|
-
}
|
216
|
-
},
|
217
|
-
"match": "(?i)\\b(dbms_output\\.)(disable|enable|get_line|get_lines|new_line|put|put_line)\\b",
|
218
|
-
"name": "support.class.oracle"
|
219
|
-
},
|
220
|
-
{
|
221
|
-
"captures": {
|
222
|
-
"1": {
|
223
|
-
"name": "support.class.oracle"
|
224
|
-
},
|
225
|
-
"2": {
|
226
|
-
"name": "support.function.oracle"
|
227
|
-
}
|
228
|
-
},
|
229
|
-
"match": "(?i)\\b(dbms_scheduler\\.)(add_event_queue_subscriber|add_group_member|add_job_email_notification|alter_chain|alter_running_chain|close_window|copy_job|create_chain|create_credential|create_database_destination|create_event_schedule|create_file_watcher|create_group|create_job|create_job_class|create_jobs|create_program|create_schedule|create_window|define_anydata_argument|define_chain_event_step|define_chain_step|define_chain_rule|define_chain_step|define_metadata_argument|define_program_argument|disable|drop_agent_destination|drop_chain|drop_chain_rule|drop_chain_step|drop_credential|drop_database_destination|drop_file_watcher|drop_group|drop_job|drop_job_class|drop_program||drop_program_argument|drop_schedule|drop_window|enable|end_detached_job_run|evaluate_calendar_string|evaluate_running_chain|generate_job_name|get_agent_info|get_agent_version|get_attribute|get_file|get_scheduler_attribute|open_window|purge_log|put_file|remove_event_queue_subscriber|remove_group_member|remove_job_email_notification|reset_job_argument_value|run_chain|run_job|set_agent_registration_pass|set_attribute|set_attribute_null|set_job_anydata_value|set_job_argument_value|set_job_attributes|set_resource_constraint|set_scheduler_attribute|stop_job)\\b",
|
230
|
-
"name": "support.class.oracle"
|
231
|
-
},
|
232
|
-
{
|
233
|
-
"captures": {
|
234
|
-
"1": {
|
235
|
-
"name": "support.class.oracle"
|
236
|
-
},
|
237
|
-
"2": {
|
238
|
-
"name": "support.function.oracle"
|
239
|
-
}
|
240
|
-
},
|
241
|
-
"match": "(?i)\\b(dbms_utility\\.)(active_instances|analyze_database|analyze_part_object|analyze_schema|canonicalize|comma_to_table|compile_schema|create_alter_type_error_table|current_instance|data_block_address_block|data_block_address_file|db_version|exec_ddl_statement|expand_sql_text|format_call_stack|format_error_backtrace|format_error_stack|get_cpu_time|get_dependency|get_endianness|get_hash_value|get_parameter_value|get_sql_hash|get_time|get_tz_transitions|invalidate|is_bit_set|is_cluster_database|make_data_block_address|name_resolve|name_tokenize|old_current_schema|old_current_user|port_string|sqlid_to_sqlhash|table_to_comma|validate|wait_on_pending_dml)\\b",
|
242
|
-
"name": "support.class.oracle"
|
243
|
-
},
|
244
|
-
{
|
245
|
-
"captures": {
|
246
|
-
"1": {
|
247
|
-
"name": "support.class.oracle"
|
248
|
-
},
|
249
|
-
"2": {
|
250
|
-
"name": "support.function.oracle"
|
251
|
-
}
|
252
|
-
},
|
253
|
-
"match": "(?i)\\b(utl_file\\.)(fclose|fclose_all|fcopy|fflush|fgetattr|fgetpos|fopen|fopen_nchar|fremove|frename|fseek|get_line|get_line_nchar|get_raw|is_open|new_line|put|put_line|put_line_nchar|put_nchar|putf|putf_nchar|put_raw)\\b",
|
254
|
-
"name": "support.class.oracle"
|
255
|
-
},
|
256
|
-
{
|
257
|
-
"captures": {
|
258
|
-
"1": {
|
259
|
-
"name": "support.class.oracle"
|
260
|
-
},
|
261
|
-
"2": {
|
262
|
-
"name": "support.function.oracle"
|
263
|
-
}
|
264
|
-
},
|
265
|
-
"match": "(?i)\\b(dbms_crypto\\.)(decrypt|encrypt|hash|mac|randombytes|randominteger|randomnumber)\\b",
|
266
|
-
"name": "support.class.oracle"
|
267
|
-
},
|
268
|
-
{
|
269
|
-
"captures": {
|
270
|
-
"1": {
|
271
|
-
"name": "support.class.oracle"
|
272
|
-
},
|
273
|
-
"2": {
|
274
|
-
"name": "support.function.oracle"
|
275
|
-
}
|
276
|
-
},
|
277
|
-
"match": "(?i)\\b(dbms_random\\.)(initialize|normal|random|seed|string|terminate|value)\\b",
|
278
|
-
"name": "support.class.oracle"
|
279
|
-
},
|
280
|
-
{
|
281
|
-
"captures": {
|
282
|
-
"1": {
|
283
|
-
"name": "support.class.oracle"
|
284
|
-
},
|
285
|
-
"2": {
|
286
|
-
"name": "support.function.oracle"
|
287
|
-
}
|
288
|
-
},
|
289
|
-
"match": "(?i)\\b(dbms_pipe\\.)(create_pipe|next_item_type|pack_message|purge|receive_message|remove_pipe|reset_buffer|send_message|unique_session_name|unpack_message)\\b",
|
290
|
-
"name": "support.class.oracle"
|
291
|
-
},
|
292
|
-
{
|
293
|
-
"captures": {
|
294
|
-
"1": {
|
295
|
-
"name": "support.class.oracle"
|
296
|
-
},
|
297
|
-
"2": {
|
298
|
-
"name": "support.function.oracle"
|
299
|
-
}
|
300
|
-
},
|
301
|
-
"match": "(?i)\\b(dbms_session\\.)(clear_all_context|clear_context|clear_identifier|close_database_link|free_unused_user_memory|is_role_enabled|is_session_alive|list_context|session_trace_disable|session_trace_enable|reset_package|set_context|set_identifier|set_nls|set_role|set_sql_trace|switch_current_consumer_group|unique_session_id)\\b",
|
302
|
-
"name": "support.class.oracle"
|
303
|
-
},
|
304
|
-
{
|
305
|
-
"captures": {
|
306
|
-
"1": {
|
307
|
-
"name": "support.class.oracle"
|
308
|
-
},
|
309
|
-
"2": {
|
310
|
-
"name": "support.function.oracle"
|
311
|
-
}
|
312
|
-
},
|
313
|
-
"match": "(?i)\\b(utl_raw\\.)(bit_and|bit_complement|bit_or|bit_xor|cast_from_binary_double|cast_from_binary_float|cast_from_binary_integer|cast_from_number|cast_to_binary_double|cast_to_binary_float|cast_to_binary_integer|cast_to_number|cast_to_raw|cast_to_varchar2|cast_to_nvarchar2|compare|concat|convert|copies|length|overlay|reverse|substr|translate|transliterate|xrange)\\b",
|
314
|
-
"name": "support.class.oracle"
|
315
|
-
},
|
316
|
-
{
|
317
|
-
"captures": {
|
318
|
-
"1": {
|
319
|
-
"name": "support.class.oracle"
|
320
|
-
},
|
321
|
-
"2": {
|
322
|
-
"name": "support.function.oracle"
|
323
|
-
}
|
324
|
-
},
|
325
|
-
"match": "(?i)\\b(utl_i18n\\.)(escape_reference|get_common_time_zones|get_default_charset|get_default_iso_currency|get_default_linguistic_sort|get_local_languages|get_local_linguistic_sorts|get_local_territories|get_local_time_zones|get_translation|map_charset|map_from_short_language|map_language_from_iso|map_locale_to_iso|map_territory_from_iso|map_to_short_language|raw_to_char|raw_to_nchar|string_to_raw|transliterate|unescape_reference)\\b",
|
326
|
-
"name": "support.class.oracle"
|
327
|
-
},
|
328
|
-
{
|
329
|
-
"captures": {
|
330
|
-
"1": {
|
331
|
-
"name": "support.class.oracle"
|
332
|
-
},
|
333
|
-
"2": {
|
334
|
-
"name": "support.function.oracle"
|
335
|
-
}
|
336
|
-
},
|
337
|
-
"match": "(?i)\\b(utl_encode\\.)(base64_decode|base64_encode|mimeheader_decode|mimeheader_encode|quoted_printable_decode|quoted_printable_encode|text_decode|text_encode|uudecode|uuencode)\\b",
|
338
|
-
"name": "support.class.oracle"
|
339
|
-
},
|
340
|
-
{
|
341
|
-
"captures": {
|
342
|
-
"1": {
|
343
|
-
"name": "support.class.oracle"
|
344
|
-
},
|
345
|
-
"2": {
|
346
|
-
"name": "support.function.oracle"
|
347
|
-
}
|
348
|
-
},
|
349
|
-
"match": "(?i)\\b(utl_mail\\.)(send|send_attach_raw|send_attach_varchar2)\\b",
|
350
|
-
"name": "support.class.oracle"
|
351
|
-
},
|
352
|
-
{
|
353
|
-
"captures": {
|
354
|
-
"1": {
|
355
|
-
"name": "support.class.oracle"
|
356
|
-
},
|
357
|
-
"2": {
|
358
|
-
"name": "support.function.oracle"
|
359
|
-
}
|
360
|
-
},
|
361
|
-
"match": "(?i)\\b(utl_coll\\.)(is_locator)\\b",
|
362
|
-
"name": "support.class.oracle"
|
363
|
-
},
|
364
|
-
{
|
365
|
-
"captures": {
|
366
|
-
"1": {
|
367
|
-
"name": "support.class.oracle"
|
368
|
-
},
|
369
|
-
"2": {
|
370
|
-
"name": "support.function.oracle"
|
371
|
-
}
|
372
|
-
},
|
373
|
-
"match": "(?i)\\b(utl_compress\\.)(isopen|lz_compress|lz_compress_add|lz_compress_close|lz_compress_open|lz_uncompress|lz_uncompress_extract|lz_uncompress_open|lz_uncompress_close)\\b",
|
374
|
-
"name": "support.class.oracle"
|
375
|
-
},
|
376
|
-
{
|
377
|
-
"captures": {
|
378
|
-
"1": {
|
379
|
-
"name": "support.class.oracle"
|
380
|
-
},
|
381
|
-
"2": {
|
382
|
-
"name": "support.function.oracle"
|
383
|
-
}
|
384
|
-
},
|
385
|
-
"match": "(?i)\\b(utl_dbws\\.)(create_call|create_service|get_in_parameter_types|get_out_parameter_types|get_output_values|get_ports|get_property|get_return_type|get_services|invoke|release_all_services|release_call|release_service|remove_property|set_property)\\b",
|
386
|
-
"name": "support.class.oracle"
|
387
|
-
},
|
388
|
-
{
|
389
|
-
"captures": {
|
390
|
-
"1": {
|
391
|
-
"name": "support.class.oracle"
|
392
|
-
},
|
393
|
-
"2": {
|
394
|
-
"name": "support.function.oracle"
|
395
|
-
}
|
396
|
-
},
|
397
|
-
"match": "(?i)\\b(utl_http\\.)(request|request_pieces|get_body_charset|get_cookie_support|get_detailed_excp_support|get_follow_redirect|get_persistent_conn_support|get_proxy|get_response_error_check|get_transfer_timeout|set_transfer_timeout|set_cookie_support|set_detailed_excp_support|set_follow_redirect|set_persistent_conn_support|set_proxy|set_response_error_check|set_transfer_timeout|set_wallet|begin_request|end_request|set_header|set_authentication|set_body_charset|set_cookie_support|set_follow_redirect|set_persistent_conn_support|set_proxy|write_raw|write_text|end_response|get_authentication|get_header|get_header_by_name|get_header_count|get_response|read_line|read_raw|read_text|set_body_charset|add_cookies|clear_cookies|get_cookie_count|get_cookies|close_persistent_conn|close_persistent_conns|get_persistent_conn_count|get_persistent_conns|get_detailed_sqlcode|get_detailed_sqlerrm)\\b",
|
398
|
-
"name": "support.class.oracle"
|
399
|
-
},
|
400
|
-
{
|
401
|
-
"captures": {
|
402
|
-
"1": {
|
403
|
-
"name": "support.class.oracle"
|
404
|
-
},
|
405
|
-
"2": {
|
406
|
-
"name": "support.function.oracle"
|
407
|
-
}
|
408
|
-
},
|
409
|
-
"match": "(?i)\\b(utl_inaddr\\.)(get_host_address|get_host_name)\\b",
|
410
|
-
"name": "support.class.oracle"
|
411
|
-
},
|
412
|
-
{
|
413
|
-
"captures": {
|
414
|
-
"1": {
|
415
|
-
"name": "support.class.oracle"
|
416
|
-
},
|
417
|
-
"2": {
|
418
|
-
"name": "support.function.oracle"
|
419
|
-
}
|
420
|
-
},
|
421
|
-
"match": "(?i)\\b(utl_lms\\.)(format_message|get_message)\\b",
|
422
|
-
"name": "support.class.oracle"
|
423
|
-
},
|
424
|
-
{
|
425
|
-
"captures": {
|
426
|
-
"1": {
|
427
|
-
"name": "support.class.oracle"
|
428
|
-
},
|
429
|
-
"2": {
|
430
|
-
"name": "support.function.oracle"
|
431
|
-
}
|
432
|
-
},
|
433
|
-
"match": "(?i)\\b(utl_nla\\.)(blas_asum|blas_axpy|blas_copy|blas_dot|blas_gbmv|blas_gemm|blas_gemv|blas_ger|blas_iamax|blas_nrm2|blas_rot|blas_rotg|blas_sbmv|blas_scal|blas_spmv|blas_spr|blas_spr2|blas_swap|blas_symm|blas_symv|blas_syr|blas_syr2|blas_syr2k|blas_syrk|blas_tbmv|blas_tbsv|blas_tpmv|blas_tpsv|blas_trmm|blas_trmv|blas_trsm|blas_trsv|lapack_gbsv|lapack_gees|lapack_geev|lapack_gels|lapack_gesdd|lapack_gesv|lapack_gesvd|lapack_gtsv|lapack_pbsv|lapack_posv|lapack_ppsv|lapack_ptsv|lapack_sbev|lapack_sbevd|lapack_spev|lapack_spevd|lapack_spsv|lapack_stev|lapack_stevd|lapack_syevd|lapack_sysv)\\b",
|
434
|
-
"name": "support.class.oracle"
|
435
|
-
},
|
436
|
-
{
|
437
|
-
"captures": {
|
438
|
-
"1": {
|
439
|
-
"name": "support.class.oracle"
|
440
|
-
},
|
441
|
-
"2": {
|
442
|
-
"name": "support.function.oracle"
|
443
|
-
}
|
444
|
-
},
|
445
|
-
"match": "(?i)\\b(utl_recomp\\.)(recomp_parallel|recomp_serial)\\b",
|
446
|
-
"name": "support.class.oracle"
|
447
|
-
},
|
448
|
-
{
|
449
|
-
"captures": {
|
450
|
-
"1": {
|
451
|
-
"name": "support.class.oracle"
|
452
|
-
},
|
453
|
-
"2": {
|
454
|
-
"name": "support.function.oracle"
|
455
|
-
}
|
456
|
-
},
|
457
|
-
"match": "(?i)\\b(utl_ref\\.)(delete_object|lock_object|select_object|update_object)\\b",
|
458
|
-
"name": "support.class.oracle"
|
459
|
-
},
|
460
|
-
{
|
461
|
-
"captures": {
|
462
|
-
"1": {
|
463
|
-
"name": "support.class.oracle"
|
464
|
-
},
|
465
|
-
"2": {
|
466
|
-
"name": "support.function.oracle"
|
467
|
-
}
|
468
|
-
},
|
469
|
-
"match": "(?i)\\b(utl_smtp\\.)(close_data|command|command_replies|data|ehlo|helo|help|mail|noop|open_connection|open_data|quit|rcpt|rset|vrfy|write_data|write_raw_data)\\b",
|
470
|
-
"name": "support.class.oracle"
|
471
|
-
},
|
472
|
-
{
|
473
|
-
"captures": {
|
474
|
-
"1": {
|
475
|
-
"name": "support.class.oracle"
|
476
|
-
},
|
477
|
-
"2": {
|
478
|
-
"name": "support.function.oracle"
|
479
|
-
}
|
480
|
-
},
|
481
|
-
"match": "(?i)\\b(utl_tcp\\.)(available|close_all_connections|close_connection|flush|get_line|get_raw|get_text|open_connection|read_line|read_raw|read_text|write_line|write_raw|write_text)\\b",
|
482
|
-
"name": "support.class.oracle"
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"captures": {
|
486
|
-
"1": {
|
487
|
-
"name": "support.class.oracle"
|
488
|
-
},
|
489
|
-
"2": {
|
490
|
-
"name": "support.function.oracle"
|
491
|
-
}
|
492
|
-
},
|
493
|
-
"match": "(?i)\\b(utl_url\\.)(escape|unescape)\\b",
|
494
|
-
"name": "support.class.oracle"
|
495
|
-
},
|
496
|
-
{
|
497
|
-
"captures": {
|
498
|
-
"1": {
|
499
|
-
"name": "support.class.oracle"
|
500
|
-
},
|
501
|
-
"2": {
|
502
|
-
"name": "support.function.oracle"
|
503
|
-
}
|
504
|
-
},
|
505
|
-
"match": "(?i)\\b(owa_util\\.)(bind_variables|calendarprint|cellsprint|choose_date|get_cgi_env|get_owa_service_path|get_procedure|http_header_close|listprint|mime_header|print_cgi_env|redirect_url|showpage|showsource|signature|status_line|tableprint|todate|who_called_me)\\b",
|
506
|
-
"name": "support.class.oracle"
|
507
|
-
},
|
508
|
-
{
|
509
|
-
"captures": {
|
510
|
-
"1": {
|
511
|
-
"name": "support.class.oracle"
|
512
|
-
},
|
513
|
-
"2": {
|
514
|
-
"name": "support.function.oracle"
|
515
|
-
}
|
516
|
-
},
|
517
|
-
"match": "(?i)\\b(owa_cache\\.)(disable|get_etag|get_level|set_cache|set_expires|set_not_modified|set_surrogate_control)\\b",
|
518
|
-
"name": "support.class.oracle"
|
519
|
-
},
|
520
|
-
{
|
521
|
-
"captures": {
|
522
|
-
"1": {
|
523
|
-
"name": "support.class.oracle"
|
524
|
-
},
|
525
|
-
"2": {
|
526
|
-
"name": "support.function.oracle"
|
527
|
-
}
|
528
|
-
},
|
529
|
-
"match": "(?i)\\b(owa_cookie\\.)(get|get_all|remove|send)\\b",
|
530
|
-
"name": "support.class.oracle"
|
531
|
-
},
|
532
|
-
{
|
533
|
-
"captures": {
|
534
|
-
"1": {
|
535
|
-
"name": "support.class.oracle"
|
536
|
-
},
|
537
|
-
"2": {
|
538
|
-
"name": "support.function.oracle"
|
539
|
-
}
|
540
|
-
},
|
541
|
-
"match": "(?i)\\b(owa_custom\\.)(authorize)\\b",
|
542
|
-
"name": "support.class.oracle"
|
543
|
-
},
|
544
|
-
{
|
545
|
-
"captures": {
|
546
|
-
"1": {
|
547
|
-
"name": "support.class.oracle"
|
548
|
-
},
|
549
|
-
"2": {
|
550
|
-
"name": "support.function.oracle"
|
551
|
-
}
|
552
|
-
},
|
553
|
-
"match": "(?i)\\b(owa_image\\.)(get_x|get_y)\\b",
|
554
|
-
"name": "support.class.oracle"
|
555
|
-
},
|
556
|
-
{
|
557
|
-
"captures": {
|
558
|
-
"1": {
|
559
|
-
"name": "support.class.oracle"
|
560
|
-
},
|
561
|
-
"2": {
|
562
|
-
"name": "support.function.oracle"
|
563
|
-
}
|
564
|
-
},
|
565
|
-
"match": "(?i)\\b(owa_opt_lock\\.)(checksum|get_rowid|store_values|verify_values)\\b",
|
566
|
-
"name": "support.class.oracle"
|
567
|
-
},
|
568
|
-
{
|
569
|
-
"captures": {
|
570
|
-
"1": {
|
571
|
-
"name": "support.class.oracle"
|
572
|
-
},
|
573
|
-
"2": {
|
574
|
-
"name": "support.function.oracle"
|
575
|
-
}
|
576
|
-
},
|
577
|
-
"match": "(?i)\\b(owa_pattern\\.)(amatch|change|getpat|match)\\b",
|
578
|
-
"name": "support.class.oracle"
|
579
|
-
},
|
580
|
-
{
|
581
|
-
"captures": {
|
582
|
-
"1": {
|
583
|
-
"name": "support.class.oracle"
|
584
|
-
},
|
585
|
-
"2": {
|
586
|
-
"name": "support.function.oracle"
|
587
|
-
}
|
588
|
-
},
|
589
|
-
"match": "(?i)\\b(owa_sec\\.)(get_client_hostname|get_client_ip|get_password|get_user_id|set_authorization|set_protection_realm)\\b",
|
590
|
-
"name": "support.class.oracle"
|
591
|
-
},
|
592
|
-
{
|
593
|
-
"captures": {
|
594
|
-
"1": {
|
595
|
-
"name": "support.class.oracle"
|
596
|
-
},
|
597
|
-
"2": {
|
598
|
-
"name": "support.function.oracle"
|
599
|
-
}
|
600
|
-
},
|
601
|
-
"match": "(?i)\\b(owa_text\\.)(add2multi|new_row_list|print_multi|print_row_list|stream2multi)\\b",
|
602
|
-
"name": "support.class.oracle"
|
603
|
-
},
|
604
|
-
{
|
605
|
-
"captures": {
|
606
|
-
"1": {
|
607
|
-
"name": "support.class.oracle"
|
608
|
-
},
|
609
|
-
"2": {
|
610
|
-
"name": "support.function.oracle"
|
611
|
-
}
|
612
|
-
},
|
613
|
-
"match": "(?i)\\b(htp\\.)(address|anchor|anchor2|appletclose|appletopen|area|base|basefont|bgsound|big|blockquoteclose|blockquoteopen|bodyclose|bodyopen|bold|br|center|centerclose|centeropen|cite|code|comment|dfn|dirlistclose|dirlistopen|div|dlistclose|dlistdef|dlistopen|dlistterm|em|emphasis|escape_sc|fontclose|fontopen|formcheckbox|formclose|formopen|formfile|formhidden|formimage|formpassword|formradio|formreset|formselectclose|formselectopen|formselectoption|formsubmit|formtext|formtextarea|formtextarea2|formtextareaclose|formtextareaopen|formtextareaopen2|frame|framesetclose|framesetopen|headclose|header|headopen|hr|htmlclose|htmlopen|img|img2|isindex|italic|kbd|keyboard|line|linkrel|linkrev|listheader|listingclose|listingopen|listitem|mailto|mapclose|mapopen|menulistclose|menulistopen|meta|nl|nobr|noframesclose|noframesopen|olistclose|olistopen|para|paragraph|param|plaintext|preclose|preopen|print|p|prints|prn|ps|s|sample|script|small|strike|strong|style|sub|sup|tablecaption|tableclose|tabledata|tableheader|tableopen|tablerowclose|tablerowopen|teletype|title|ulistclose|ulistopen|underline|variable|wbr)\\b",
|
614
|
-
"name": "support.class.oracle"
|
615
|
-
},
|
616
|
-
{
|
617
|
-
"begin": "q'\\[",
|
618
|
-
"end": "\\]'",
|
619
|
-
"name": "string.group.quote.oracle"
|
620
|
-
},
|
621
|
-
{
|
622
|
-
"begin": "'",
|
623
|
-
"end": "'",
|
624
|
-
"name": "string.quoted.single.oracle"
|
625
|
-
},
|
626
|
-
{
|
627
|
-
"begin": "\"",
|
628
|
-
"end": "\"",
|
629
|
-
"name": "string.quoted.double.oracle"
|
630
|
-
},
|
631
|
-
{
|
632
|
-
"match": "(?i)\\b(varchar2|nvarchar2|number|integer|float|long|date|binary_float|binary_double|timestamp|interval|raw|long\\s+raw|rowid|urowid|char|nchar|clob|nclob|blob|bfile|boolean|pls_integer|binary_integer|natural|naturaln|positive|positiven|signtype|simple_integer)\\b",
|
633
|
-
"name": "storage.type.oracle"
|
634
|
-
},
|
635
|
-
{
|
636
|
-
"match": "(?i)\\b(access_into_null|case_not_found|collection_is_null|cursor_already_open|dup_val_on_index|invalid_cursor|invalid_number|login_denied|no_data_found|not_logged_on|program_error|rowtype_mismatch|self_is_null|storage_error|subscript_beyond_count|subscript_outside_limit|sys_invalid_rowid|timeout_on_resource|too_many_rows|value_error|zero_divide)\\b",
|
637
|
-
"name": "storage.exception.type.oracle"
|
638
|
-
}
|
639
|
-
],
|
640
|
-
"scopeName": "source.plsql.oracle",
|
641
|
-
"uuid": "28DCE4DD-F5E1-4ED3-8847-64DA6B1F9163"
|
642
|
-
}
|