github-linguist 2.10.7 → 2.10.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/linguist/generated.rb +24 -0
- data/lib/linguist/heuristics.rb +3 -1
- data/lib/linguist/language.rb +1 -1
- data/lib/linguist/languages.yml +34 -8
- data/lib/linguist/samples.json +931 -420
- data/lib/linguist/vendor.yml +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f0906667498f0302124bfafe4df703d167e1aa7
|
4
|
+
data.tar.gz: 8b1e758e4b3b18d1a656925248263c74fc9d5b6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b6fac3c2976fde426d9f52bccbefb12a321364ad821f2b6452f05a7b0e0a5892b33dad3a4b5e5dfc26f8f2462f68954e02718995d1fac0442678317a4b52426
|
7
|
+
data.tar.gz: aab80deaa25c0051500426ae08a88ce5920e249de0e82cc53db0da35c07005dac94fc74336c0effad6774be6aa21c80a80a9626f3264054035ef07cb8c6d6298
|
data/lib/linguist/generated.rb
CHANGED
@@ -58,6 +58,7 @@ module Linguist
|
|
58
58
|
generated_parser? ||
|
59
59
|
generated_net_docfile? ||
|
60
60
|
generated_net_designer_file? ||
|
61
|
+
generated_postscript? ||
|
61
62
|
generated_protocol_buffer? ||
|
62
63
|
generated_jni_header? ||
|
63
64
|
composer_lock? ||
|
@@ -176,6 +177,29 @@ module Linguist
|
|
176
177
|
false
|
177
178
|
end
|
178
179
|
|
180
|
+
# Internal: Is the blob of PostScript generated?
|
181
|
+
#
|
182
|
+
# PostScript files are often generated by other programs. If they tell us so,
|
183
|
+
# we can detect them.
|
184
|
+
#
|
185
|
+
# Returns true or false.
|
186
|
+
def generated_postscript?
|
187
|
+
return false unless ['.ps', '.eps'].include? extname
|
188
|
+
|
189
|
+
# We analyze the "%%Creator:" comment, which contains the author/generator
|
190
|
+
# of the file. If there is one, it should be in one of the first few lines.
|
191
|
+
creator = lines[0..9].find {|line| line =~ /^%%Creator: /}
|
192
|
+
return false if creator.nil?
|
193
|
+
|
194
|
+
# Most generators write their version number, while human authors' or companies'
|
195
|
+
# names don't contain numbers. So look if the line contains digits. Also
|
196
|
+
# look for some special cases without version numbers.
|
197
|
+
return creator =~ /[0-9]/ ||
|
198
|
+
creator.include?("mpage") ||
|
199
|
+
creator.include?("draw") ||
|
200
|
+
creator.include?("ImageMagick")
|
201
|
+
end
|
202
|
+
|
179
203
|
# Internal: Is the blob a C++, Java or Python source file generated by the
|
180
204
|
# Protocol Buffer compiler?
|
181
205
|
#
|
data/lib/linguist/heuristics.rb
CHANGED
@@ -20,12 +20,14 @@ module Linguist
|
|
20
20
|
end
|
21
21
|
|
22
22
|
# .h extensions are ambigious between C, C++, and Objective-C.
|
23
|
-
# We want to shortcut look for Objective-C
|
23
|
+
# We want to shortcut look for Objective-C _and_ now C++ too!
|
24
24
|
#
|
25
25
|
# Returns an array of Languages or []
|
26
|
+
# TODO rename this method as we're not strictly disambiguating between .h files here.
|
26
27
|
def self.disambiguate_h(data, languages)
|
27
28
|
matches = []
|
28
29
|
matches << Language["Objective-C"] if data.include?("@interface")
|
30
|
+
matches << Language["C++"] if data.include?("#include <cstdint>")
|
29
31
|
matches
|
30
32
|
end
|
31
33
|
|
data/lib/linguist/language.rb
CHANGED
data/lib/linguist/languages.yml
CHANGED
@@ -382,6 +382,12 @@ Creole:
|
|
382
382
|
wrap: true
|
383
383
|
primary_extension: .creole
|
384
384
|
|
385
|
+
Crystal:
|
386
|
+
type: programming
|
387
|
+
lexer: Ruby
|
388
|
+
primary_extension: .cr
|
389
|
+
ace_mode: ruby
|
390
|
+
|
385
391
|
Cucumber:
|
386
392
|
lexer: Gherkin
|
387
393
|
primary_extension: .feature
|
@@ -726,6 +732,12 @@ Haxe:
|
|
726
732
|
extensions:
|
727
733
|
- .hxsl
|
728
734
|
|
735
|
+
IDL:
|
736
|
+
type: programming
|
737
|
+
lexer: Text only
|
738
|
+
color: "#e3592c"
|
739
|
+
primary_extension: .pro
|
740
|
+
|
729
741
|
INI:
|
730
742
|
type: data
|
731
743
|
extensions:
|
@@ -920,10 +932,6 @@ LiveScript:
|
|
920
932
|
Logos:
|
921
933
|
type: programming
|
922
934
|
primary_extension: .xm
|
923
|
-
extensions:
|
924
|
-
- .x
|
925
|
-
- .xi
|
926
|
-
- .xmi
|
927
935
|
|
928
936
|
Logtalk:
|
929
937
|
type: programming
|
@@ -1206,16 +1214,28 @@ Perl:
|
|
1206
1214
|
primary_extension: .pl
|
1207
1215
|
extensions:
|
1208
1216
|
- .PL
|
1209
|
-
- .nqp
|
1210
1217
|
- .perl
|
1211
1218
|
- .ph
|
1212
1219
|
- .plx
|
1213
|
-
- .
|
1220
|
+
- .pm
|
1214
1221
|
- .pod
|
1215
1222
|
- .psgi
|
1216
1223
|
interpreters:
|
1217
1224
|
- perl
|
1218
1225
|
|
1226
|
+
Perl6:
|
1227
|
+
type: programming
|
1228
|
+
color: "#0298c3"
|
1229
|
+
primary_extension: .p6
|
1230
|
+
extensions:
|
1231
|
+
- .6pl
|
1232
|
+
- .6pm
|
1233
|
+
- .nqp
|
1234
|
+
- .p6l
|
1235
|
+
- .p6m
|
1236
|
+
- .pl6
|
1237
|
+
- .pm6
|
1238
|
+
|
1219
1239
|
Pike:
|
1220
1240
|
type: programming
|
1221
1241
|
color: "#066ab2"
|
@@ -1237,6 +1257,12 @@ PogoScript:
|
|
1237
1257
|
lexer: Text only
|
1238
1258
|
primary_extension: .pogo
|
1239
1259
|
|
1260
|
+
PostScript:
|
1261
|
+
type: markup
|
1262
|
+
primary_extension: .ps
|
1263
|
+
extensions:
|
1264
|
+
- .eps
|
1265
|
+
|
1240
1266
|
PowerShell:
|
1241
1267
|
type: programming
|
1242
1268
|
ace_mode: powershell
|
@@ -1257,8 +1283,6 @@ Prolog:
|
|
1257
1283
|
type: programming
|
1258
1284
|
color: "#74283c"
|
1259
1285
|
primary_extension: .prolog
|
1260
|
-
extensions:
|
1261
|
-
- .pro
|
1262
1286
|
|
1263
1287
|
Protocol Buffer:
|
1264
1288
|
type: markup
|
@@ -1546,6 +1570,8 @@ Standard ML:
|
|
1546
1570
|
aliases:
|
1547
1571
|
- sml
|
1548
1572
|
primary_extension: .sml
|
1573
|
+
extensions:
|
1574
|
+
- .fun
|
1549
1575
|
|
1550
1576
|
Stylus:
|
1551
1577
|
type: markup
|
data/lib/linguist/samples.json
CHANGED
@@ -124,7 +124,6 @@
|
|
124
124
|
],
|
125
125
|
"Gosu": [
|
126
126
|
".gs",
|
127
|
-
".gsp",
|
128
127
|
".gst",
|
129
128
|
".gsx",
|
130
129
|
".vark"
|
@@ -143,6 +142,10 @@
|
|
143
142
|
".handlebars",
|
144
143
|
".hbs"
|
145
144
|
],
|
145
|
+
"IDL": [
|
146
|
+
".dlm",
|
147
|
+
".pro"
|
148
|
+
],
|
146
149
|
"Idris": [
|
147
150
|
".idr"
|
148
151
|
],
|
@@ -291,6 +294,10 @@
|
|
291
294
|
".script!",
|
292
295
|
".t"
|
293
296
|
],
|
297
|
+
"Perl6": [
|
298
|
+
".p6",
|
299
|
+
".pm6"
|
300
|
+
],
|
294
301
|
"PHP": [
|
295
302
|
".module",
|
296
303
|
".php",
|
@@ -302,6 +309,9 @@
|
|
302
309
|
"PogoScript": [
|
303
310
|
".pogo"
|
304
311
|
],
|
312
|
+
"PostScript": [
|
313
|
+
".ps"
|
314
|
+
],
|
305
315
|
"PowerShell": [
|
306
316
|
".ps1",
|
307
317
|
".psm1"
|
@@ -309,9 +319,6 @@
|
|
309
319
|
"Processing": [
|
310
320
|
".pde"
|
311
321
|
],
|
312
|
-
"Prolog": [
|
313
|
-
".pl"
|
314
|
-
],
|
315
322
|
"Protocol Buffer": [
|
316
323
|
".proto"
|
317
324
|
],
|
@@ -387,6 +394,7 @@
|
|
387
394
|
".nut"
|
388
395
|
],
|
389
396
|
"Standard ML": [
|
397
|
+
".fun",
|
390
398
|
".sig",
|
391
399
|
".sml"
|
392
400
|
],
|
@@ -511,8 +519,8 @@
|
|
511
519
|
".gemrc"
|
512
520
|
]
|
513
521
|
},
|
514
|
-
"tokens_total":
|
515
|
-
"languages_total":
|
522
|
+
"tokens_total": 439417,
|
523
|
+
"languages_total": 511,
|
516
524
|
"tokens": {
|
517
525
|
"ABAP": {
|
518
526
|
"*/**": 1,
|
@@ -8562,7 +8570,7 @@
|
|
8562
8570
|
"C++": {
|
8563
8571
|
"class": 40,
|
8564
8572
|
"Bar": 2,
|
8565
|
-
"{":
|
8573
|
+
"{": 581,
|
8566
8574
|
"protected": 4,
|
8567
8575
|
"char": 127,
|
8568
8576
|
"*name": 6,
|
@@ -8572,7 +8580,7 @@
|
|
8572
8580
|
"hello": 2,
|
8573
8581
|
"(": 2729,
|
8574
8582
|
")": 2731,
|
8575
|
-
"}":
|
8583
|
+
"}": 581,
|
8576
8584
|
"//": 278,
|
8577
8585
|
"///": 843,
|
8578
8586
|
"mainpage": 1,
|
@@ -9245,7 +9253,7 @@
|
|
9245
9253
|
"#ifndef": 27,
|
9246
9254
|
"BCM2835_H": 3,
|
9247
9255
|
"#define": 341,
|
9248
|
-
"#include":
|
9256
|
+
"#include": 121,
|
9249
9257
|
"<stdint.h>": 2,
|
9250
9258
|
"defgroup": 7,
|
9251
9259
|
"constants": 1,
|
@@ -10120,7 +10128,7 @@
|
|
10120
10128
|
"<string>": 4,
|
10121
10129
|
"<vector>": 4,
|
10122
10130
|
"<fstream>": 2,
|
10123
|
-
"namespace":
|
10131
|
+
"namespace": 31,
|
10124
10132
|
"std": 52,
|
10125
10133
|
"DEFAULT_DELIMITER": 1,
|
10126
10134
|
"CsvStreamer": 5,
|
@@ -11276,6 +11284,8 @@
|
|
11276
11284
|
"wrapMode": 2,
|
11277
11285
|
"wmode.": 1,
|
11278
11286
|
"wmode": 1,
|
11287
|
+
"<cstdint>": 2,
|
11288
|
+
"Gui": 1,
|
11279
11289
|
"rpc_init": 1,
|
11280
11290
|
"rpc_server_loop": 1,
|
11281
11291
|
"v8": 9,
|
@@ -11573,7 +11583,6 @@
|
|
11573
11583
|
"desc": 2,
|
11574
11584
|
"look": 1,
|
11575
11585
|
"ahead": 1,
|
11576
|
-
"<cstdint>": 1,
|
11577
11586
|
"smallPrime_t": 1,
|
11578
11587
|
"UTILS_H": 3,
|
11579
11588
|
"<QtGlobal>": 1,
|
@@ -17704,9 +17713,6 @@
|
|
17704
17713
|
"sampled.rgb": 1
|
17705
17714
|
},
|
17706
17715
|
"Gosu": {
|
17707
|
-
"print": 4,
|
17708
|
-
"(": 54,
|
17709
|
-
")": 55,
|
17710
17716
|
"<%!-->": 1,
|
17711
17717
|
"defined": 1,
|
17712
17718
|
"in": 3,
|
@@ -17716,9 +17722,11 @@
|
|
17716
17722
|
"%": 2,
|
17717
17723
|
"@": 1,
|
17718
17724
|
"params": 1,
|
17725
|
+
"(": 53,
|
17719
17726
|
"users": 2,
|
17720
17727
|
"Collection": 1,
|
17721
17728
|
"<User>": 1,
|
17729
|
+
")": 54,
|
17722
17730
|
"<%>": 2,
|
17723
17731
|
"for": 2,
|
17724
17732
|
"user": 1,
|
@@ -17745,6 +17753,7 @@
|
|
17745
17753
|
"int": 2,
|
17746
17754
|
"Relationship.valueOf": 2,
|
17747
17755
|
"hello": 1,
|
17756
|
+
"print": 3,
|
17748
17757
|
"uses": 2,
|
17749
17758
|
"java.util.*": 1,
|
17750
17759
|
"java.io.File": 1,
|
@@ -17954,6 +17963,155 @@
|
|
17954
17963
|
"</h2>": 1,
|
17955
17964
|
"/each": 1
|
17956
17965
|
},
|
17966
|
+
"IDL": {
|
17967
|
+
";": 59,
|
17968
|
+
"docformat": 3,
|
17969
|
+
"+": 8,
|
17970
|
+
"Inverse": 1,
|
17971
|
+
"hyperbolic": 2,
|
17972
|
+
"cosine.": 1,
|
17973
|
+
"Uses": 1,
|
17974
|
+
"the": 7,
|
17975
|
+
"formula": 1,
|
17976
|
+
"text": 1,
|
17977
|
+
"{": 3,
|
17978
|
+
"acosh": 1,
|
17979
|
+
"}": 3,
|
17980
|
+
"(": 26,
|
17981
|
+
"z": 9,
|
17982
|
+
")": 26,
|
17983
|
+
"ln": 1,
|
17984
|
+
"sqrt": 4,
|
17985
|
+
"-": 14,
|
17986
|
+
"Examples": 2,
|
17987
|
+
"The": 1,
|
17988
|
+
"arc": 1,
|
17989
|
+
"sine": 1,
|
17990
|
+
"function": 4,
|
17991
|
+
"looks": 1,
|
17992
|
+
"like": 2,
|
17993
|
+
"IDL": 5,
|
17994
|
+
"x": 8,
|
17995
|
+
"*": 2,
|
17996
|
+
"findgen": 1,
|
17997
|
+
"/": 1,
|
17998
|
+
"plot": 1,
|
17999
|
+
"mg_acosh": 2,
|
18000
|
+
"xstyle": 1,
|
18001
|
+
"This": 1,
|
18002
|
+
"should": 1,
|
18003
|
+
"look": 1,
|
18004
|
+
"..": 1,
|
18005
|
+
"image": 1,
|
18006
|
+
"acosh.png": 1,
|
18007
|
+
"Returns": 3,
|
18008
|
+
"float": 1,
|
18009
|
+
"double": 2,
|
18010
|
+
"complex": 2,
|
18011
|
+
"or": 1,
|
18012
|
+
"depending": 1,
|
18013
|
+
"on": 1,
|
18014
|
+
"input": 2,
|
18015
|
+
"Params": 3,
|
18016
|
+
"in": 4,
|
18017
|
+
"required": 4,
|
18018
|
+
"type": 5,
|
18019
|
+
"numeric": 1,
|
18020
|
+
"compile_opt": 3,
|
18021
|
+
"strictarr": 3,
|
18022
|
+
"return": 5,
|
18023
|
+
"alog": 1,
|
18024
|
+
"end": 5,
|
18025
|
+
"MODULE": 1,
|
18026
|
+
"mg_analysis": 1,
|
18027
|
+
"DESCRIPTION": 1,
|
18028
|
+
"Tools": 1,
|
18029
|
+
"for": 2,
|
18030
|
+
"analysis": 1,
|
18031
|
+
"VERSION": 1,
|
18032
|
+
"SOURCE": 1,
|
18033
|
+
"mgalloy": 1,
|
18034
|
+
"BUILD_DATE": 1,
|
18035
|
+
"January": 1,
|
18036
|
+
"FUNCTION": 2,
|
18037
|
+
"MG_ARRAY_EQUAL": 1,
|
18038
|
+
"KEYWORDS": 1,
|
18039
|
+
"MG_TOTAL": 1,
|
18040
|
+
"Find": 1,
|
18041
|
+
"greatest": 1,
|
18042
|
+
"common": 1,
|
18043
|
+
"denominator": 1,
|
18044
|
+
"GCD": 1,
|
18045
|
+
"two": 1,
|
18046
|
+
"positive": 2,
|
18047
|
+
"integers.": 1,
|
18048
|
+
"integer": 5,
|
18049
|
+
"a": 4,
|
18050
|
+
"first": 1,
|
18051
|
+
"b": 4,
|
18052
|
+
"second": 1,
|
18053
|
+
"mg_gcd": 2,
|
18054
|
+
"on_error": 1,
|
18055
|
+
"if": 5,
|
18056
|
+
"n_params": 1,
|
18057
|
+
"ne": 1,
|
18058
|
+
"then": 5,
|
18059
|
+
"message": 2,
|
18060
|
+
"mg_isinteger": 2,
|
18061
|
+
"||": 1,
|
18062
|
+
"begin": 2,
|
18063
|
+
"endif": 2,
|
18064
|
+
"_a": 3,
|
18065
|
+
"abs": 2,
|
18066
|
+
"_b": 3,
|
18067
|
+
"minArg": 5,
|
18068
|
+
"<": 1,
|
18069
|
+
"maxArg": 3,
|
18070
|
+
"eq": 2,
|
18071
|
+
"remainder": 3,
|
18072
|
+
"mod": 1,
|
18073
|
+
"Truncate": 1,
|
18074
|
+
"argument": 2,
|
18075
|
+
"towards": 1,
|
18076
|
+
"i.e.": 1,
|
18077
|
+
"takes": 1,
|
18078
|
+
"FLOOR": 1,
|
18079
|
+
"of": 4,
|
18080
|
+
"values": 2,
|
18081
|
+
"and": 1,
|
18082
|
+
"CEIL": 1,
|
18083
|
+
"negative": 1,
|
18084
|
+
"values.": 1,
|
18085
|
+
"Try": 1,
|
18086
|
+
"main": 2,
|
18087
|
+
"level": 2,
|
18088
|
+
"program": 2,
|
18089
|
+
"at": 1,
|
18090
|
+
"this": 1,
|
18091
|
+
"file.": 1,
|
18092
|
+
"It": 1,
|
18093
|
+
"does": 1,
|
18094
|
+
"print": 4,
|
18095
|
+
"mg_trunc": 3,
|
18096
|
+
"[": 6,
|
18097
|
+
"]": 6,
|
18098
|
+
"floor": 2,
|
18099
|
+
"ceil": 2,
|
18100
|
+
"array": 2,
|
18101
|
+
"same": 1,
|
18102
|
+
"as": 1,
|
18103
|
+
"float/double": 1,
|
18104
|
+
"containing": 1,
|
18105
|
+
"to": 1,
|
18106
|
+
"truncate": 1,
|
18107
|
+
"result": 3,
|
18108
|
+
"posInd": 3,
|
18109
|
+
"where": 1,
|
18110
|
+
"gt": 2,
|
18111
|
+
"nposInd": 2,
|
18112
|
+
"L": 1,
|
18113
|
+
"example": 1
|
18114
|
+
},
|
17957
18115
|
"Idris": {
|
17958
18116
|
"module": 1,
|
17959
18117
|
"Prelude.Char": 1,
|
@@ -36840,6 +36998,131 @@
|
|
36840
36998
|
"reference.": 1,
|
36841
36999
|
"AUTHOR": 1
|
36842
37000
|
},
|
37001
|
+
"Perl6": {
|
37002
|
+
"token": 6,
|
37003
|
+
"pod_formatting_code": 1,
|
37004
|
+
"{": 29,
|
37005
|
+
"<code>": 1,
|
37006
|
+
"<[A..Z]>": 1,
|
37007
|
+
"*POD_IN_FORMATTINGCODE": 1,
|
37008
|
+
"}": 27,
|
37009
|
+
"<content>": 1,
|
37010
|
+
"[": 1,
|
37011
|
+
"<!before>": 1,
|
37012
|
+
"#": 13,
|
37013
|
+
"N*": 1,
|
37014
|
+
"role": 10,
|
37015
|
+
"q": 5,
|
37016
|
+
"stopper": 2,
|
37017
|
+
"MAIN": 1,
|
37018
|
+
"quote": 1,
|
37019
|
+
")": 19,
|
37020
|
+
"backslash": 3,
|
37021
|
+
"sym": 3,
|
37022
|
+
"<\\\\>": 1,
|
37023
|
+
"<text=.sym>": 1,
|
37024
|
+
"<stopper>": 1,
|
37025
|
+
"<text=.stopper>": 1,
|
37026
|
+
"<miscq>": 1,
|
37027
|
+
".": 1,
|
37028
|
+
"method": 2,
|
37029
|
+
"tweak_q": 1,
|
37030
|
+
"(": 16,
|
37031
|
+
"v": 2,
|
37032
|
+
"self.panic": 2,
|
37033
|
+
"tweak_qq": 1,
|
37034
|
+
"qq": 5,
|
37035
|
+
"does": 7,
|
37036
|
+
"b1": 1,
|
37037
|
+
"c1": 1,
|
37038
|
+
"s1": 1,
|
37039
|
+
"a1": 1,
|
37040
|
+
"h1": 1,
|
37041
|
+
"f1": 1,
|
37042
|
+
"Too": 2,
|
37043
|
+
"late": 2,
|
37044
|
+
"for": 2,
|
37045
|
+
"SHEBANG#!perl": 1,
|
37046
|
+
"use": 1,
|
37047
|
+
"v6": 1,
|
37048
|
+
";": 19,
|
37049
|
+
"my": 10,
|
37050
|
+
"string": 7,
|
37051
|
+
"if": 1,
|
37052
|
+
"eq": 1,
|
37053
|
+
"say": 10,
|
37054
|
+
"regex": 2,
|
37055
|
+
"http": 1,
|
37056
|
+
"-": 3,
|
37057
|
+
"verb": 1,
|
37058
|
+
"|": 9,
|
37059
|
+
"multi": 2,
|
37060
|
+
"line": 5,
|
37061
|
+
"comment": 2,
|
37062
|
+
"I": 1,
|
37063
|
+
"there": 1,
|
37064
|
+
"m": 2,
|
37065
|
+
"even": 1,
|
37066
|
+
"specialer": 1,
|
37067
|
+
"nesting": 1,
|
37068
|
+
"work": 1,
|
37069
|
+
"<": 3,
|
37070
|
+
"trying": 1,
|
37071
|
+
"mixed": 1,
|
37072
|
+
"delimiters": 1,
|
37073
|
+
"<Hooray,>": 1,
|
37074
|
+
"arbitrary": 2,
|
37075
|
+
"delimiter": 2,
|
37076
|
+
"Hooray": 1,
|
37077
|
+
"<now>": 1,
|
37078
|
+
"with": 9,
|
37079
|
+
"whitespace": 1,
|
37080
|
+
"<<": 1,
|
37081
|
+
"more": 1,
|
37082
|
+
"strings": 1,
|
37083
|
+
"%": 1,
|
37084
|
+
"hash": 1,
|
37085
|
+
"Hash.new": 1,
|
37086
|
+
"begin": 1,
|
37087
|
+
"pod": 1,
|
37088
|
+
"Here": 1,
|
37089
|
+
"t": 2,
|
37090
|
+
"highlighted": 1,
|
37091
|
+
"table": 1,
|
37092
|
+
"Of": 1,
|
37093
|
+
"things": 1,
|
37094
|
+
"A": 3,
|
37095
|
+
"single": 3,
|
37096
|
+
"declarator": 7,
|
37097
|
+
"a": 8,
|
37098
|
+
"keyword": 7,
|
37099
|
+
"like": 7,
|
37100
|
+
"Another": 2,
|
37101
|
+
"block": 2,
|
37102
|
+
"brace": 1,
|
37103
|
+
"More": 2,
|
37104
|
+
"blocks": 2,
|
37105
|
+
"don": 2,
|
37106
|
+
"x": 2,
|
37107
|
+
"foo": 3,
|
37108
|
+
"Rob": 1,
|
37109
|
+
"food": 1,
|
37110
|
+
"match": 1,
|
37111
|
+
"sub": 1,
|
37112
|
+
"something": 1,
|
37113
|
+
"Str": 1,
|
37114
|
+
"D": 1,
|
37115
|
+
"value": 1,
|
37116
|
+
"...": 1,
|
37117
|
+
"s": 1,
|
37118
|
+
"some": 2,
|
37119
|
+
"stuff": 1,
|
37120
|
+
"chars": 1,
|
37121
|
+
"/": 1,
|
37122
|
+
"<foo>": 1,
|
37123
|
+
"<bar>": 1,
|
37124
|
+
"roleq": 1
|
37125
|
+
},
|
36843
37126
|
"PHP": {
|
36844
37127
|
"<": 11,
|
36845
37128
|
"php": 12,
|
@@ -38217,6 +38500,60 @@
|
|
38217
38500
|
"href": 1,
|
38218
38501
|
"m.1": 1
|
38219
38502
|
},
|
38503
|
+
"PostScript": {
|
38504
|
+
"%": 23,
|
38505
|
+
"PS": 1,
|
38506
|
+
"-": 4,
|
38507
|
+
"Adobe": 1,
|
38508
|
+
"Creator": 1,
|
38509
|
+
"Aaron": 1,
|
38510
|
+
"Puchert": 1,
|
38511
|
+
"Title": 1,
|
38512
|
+
"The": 1,
|
38513
|
+
"Sierpinski": 1,
|
38514
|
+
"triangle": 1,
|
38515
|
+
"Pages": 1,
|
38516
|
+
"PageOrder": 1,
|
38517
|
+
"Ascend": 1,
|
38518
|
+
"BeginProlog": 1,
|
38519
|
+
"/pageset": 1,
|
38520
|
+
"{": 4,
|
38521
|
+
"scale": 1,
|
38522
|
+
"set": 1,
|
38523
|
+
"cm": 1,
|
38524
|
+
"translate": 1,
|
38525
|
+
"setlinewidth": 1,
|
38526
|
+
"}": 4,
|
38527
|
+
"def": 2,
|
38528
|
+
"/sierpinski": 1,
|
38529
|
+
"dup": 4,
|
38530
|
+
"gt": 1,
|
38531
|
+
"[": 6,
|
38532
|
+
"]": 6,
|
38533
|
+
"concat": 5,
|
38534
|
+
"sub": 3,
|
38535
|
+
"sierpinski": 4,
|
38536
|
+
"newpath": 1,
|
38537
|
+
"moveto": 1,
|
38538
|
+
"lineto": 2,
|
38539
|
+
"closepath": 1,
|
38540
|
+
"fill": 1,
|
38541
|
+
"ifelse": 1,
|
38542
|
+
"pop": 1,
|
38543
|
+
"EndProlog": 1,
|
38544
|
+
"BeginSetup": 1,
|
38545
|
+
"<<": 1,
|
38546
|
+
"/PageSize": 1,
|
38547
|
+
"setpagedevice": 1,
|
38548
|
+
"A4": 1,
|
38549
|
+
"EndSetup": 1,
|
38550
|
+
"Page": 1,
|
38551
|
+
"Test": 1,
|
38552
|
+
"pageset": 1,
|
38553
|
+
"sqrt": 1,
|
38554
|
+
"showpage": 1,
|
38555
|
+
"EOF": 1
|
38556
|
+
},
|
38220
38557
|
"PowerShell": {
|
38221
38558
|
"Write": 2,
|
38222
38559
|
"-": 2,
|
@@ -38249,366 +38586,6 @@
|
|
38249
38586
|
"PI": 1,
|
38250
38587
|
"TWO_PI": 1
|
38251
38588
|
},
|
38252
|
-
"Prolog": {
|
38253
|
-
"action_module": 1,
|
38254
|
-
"(": 585,
|
38255
|
-
"calculator": 1,
|
38256
|
-
")": 584,
|
38257
|
-
".": 210,
|
38258
|
-
"%": 334,
|
38259
|
-
"[": 110,
|
38260
|
-
"-": 276,
|
38261
|
-
"d1": 1,
|
38262
|
-
"]": 109,
|
38263
|
-
"push": 20,
|
38264
|
-
"D": 37,
|
38265
|
-
"if": 2,
|
38266
|
-
"mode": 22,
|
38267
|
-
"init": 11,
|
38268
|
-
"<": 11,
|
38269
|
-
"deny": 10,
|
38270
|
-
"displayed": 17,
|
38271
|
-
"D1": 5,
|
38272
|
-
"affirm": 10,
|
38273
|
-
"cont": 3,
|
38274
|
-
"*D1": 2,
|
38275
|
-
"+": 32,
|
38276
|
-
"New": 2,
|
38277
|
-
"a": 31,
|
38278
|
-
"op": 28,
|
38279
|
-
"d": 27,
|
38280
|
-
"m": 16,
|
38281
|
-
"clear": 4,
|
38282
|
-
"nop": 6,
|
38283
|
-
"accumulator": 10,
|
38284
|
-
"A": 40,
|
38285
|
-
"O": 14,
|
38286
|
-
"memory": 5,
|
38287
|
-
"M": 14,
|
38288
|
-
"X": 62,
|
38289
|
-
"mem_rec": 2,
|
38290
|
-
"plus": 6,
|
38291
|
-
"eval": 7,
|
38292
|
-
"V": 16,
|
38293
|
-
";": 9,
|
38294
|
-
"use": 3,
|
38295
|
-
"normal": 3,
|
38296
|
-
"arithmetic": 3,
|
38297
|
-
"i.e.": 3,
|
38298
|
-
"minus": 5,
|
38299
|
-
"lt": 1,
|
38300
|
-
"times": 4,
|
38301
|
-
"equal": 2,
|
38302
|
-
"mem_plus": 2,
|
38303
|
-
"v": 3,
|
38304
|
-
"where": 3,
|
38305
|
-
"V1": 2,
|
38306
|
-
"plus_minus": 1,
|
38307
|
-
"normalize": 2,
|
38308
|
-
"Wff": 3,
|
38309
|
-
"NormalClauses": 3,
|
38310
|
-
"conVert": 1,
|
38311
|
-
"S": 26,
|
38312
|
-
"cnF": 1,
|
38313
|
-
"T": 6,
|
38314
|
-
"flatten_and": 5,
|
38315
|
-
"U": 2,
|
38316
|
-
"make_clauses": 5,
|
38317
|
-
"make": 2,
|
38318
|
-
"sequence": 2,
|
38319
|
-
"out": 4,
|
38320
|
-
"of": 5,
|
38321
|
-
"conjunction": 1,
|
38322
|
-
"/": 2,
|
38323
|
-
"Y": 34,
|
38324
|
-
"F": 31,
|
38325
|
-
"B": 30,
|
38326
|
-
"sequence_append": 5,
|
38327
|
-
"disjunction": 1,
|
38328
|
-
"flatten_or": 6,
|
38329
|
-
"append": 2,
|
38330
|
-
"two": 1,
|
38331
|
-
"sequences": 1,
|
38332
|
-
"R": 32,
|
38333
|
-
"separate": 7,
|
38334
|
-
"into": 1,
|
38335
|
-
"positive": 1,
|
38336
|
-
"and": 3,
|
38337
|
-
"negative": 1,
|
38338
|
-
"literals": 1,
|
38339
|
-
"P": 37,
|
38340
|
-
"N": 20,
|
38341
|
-
"|": 36,
|
38342
|
-
"N1": 2,
|
38343
|
-
"P1": 2,
|
38344
|
-
"tautology": 4,
|
38345
|
-
"some_occurs": 3,
|
38346
|
-
"occurs": 4,
|
38347
|
-
"_": 21,
|
38348
|
-
"C": 21,
|
38349
|
-
"make_clause": 5,
|
38350
|
-
"false": 1,
|
38351
|
-
"make_sequence": 9,
|
38352
|
-
"H": 11,
|
38353
|
-
"write_list": 3,
|
38354
|
-
"write": 13,
|
38355
|
-
"nl": 8,
|
38356
|
-
"A*": 1,
|
38357
|
-
"Algorithm": 1,
|
38358
|
-
"Nodes": 1,
|
38359
|
-
"have": 2,
|
38360
|
-
"form": 2,
|
38361
|
-
"S#D#F#A": 1,
|
38362
|
-
"describes": 1,
|
38363
|
-
"the": 15,
|
38364
|
-
"state": 1,
|
38365
|
-
"or": 1,
|
38366
|
-
"configuration": 1,
|
38367
|
-
"is": 22,
|
38368
|
-
"depth": 1,
|
38369
|
-
"node": 2,
|
38370
|
-
"evaluation": 1,
|
38371
|
-
"function": 4,
|
38372
|
-
"value": 1,
|
38373
|
-
"ancestor": 1,
|
38374
|
-
"list": 1,
|
38375
|
-
"for": 1,
|
38376
|
-
"yfx": 1,
|
38377
|
-
"solve": 2,
|
38378
|
-
"State": 7,
|
38379
|
-
"Soln": 3,
|
38380
|
-
"f_function": 3,
|
38381
|
-
"search": 4,
|
38382
|
-
"State#0#F#": 1,
|
38383
|
-
"reverse": 2,
|
38384
|
-
"h_function": 2,
|
38385
|
-
"H.": 1,
|
38386
|
-
"State#_#_#Soln": 1,
|
38387
|
-
"goal": 2,
|
38388
|
-
"expand": 2,
|
38389
|
-
"Children": 2,
|
38390
|
-
"insert_all": 4,
|
38391
|
-
"Open": 7,
|
38392
|
-
"Open1": 2,
|
38393
|
-
"Open3": 2,
|
38394
|
-
"insert": 6,
|
38395
|
-
"Open2": 2,
|
38396
|
-
"repeat_node": 2,
|
38397
|
-
"cheaper": 2,
|
38398
|
-
"B1": 2,
|
38399
|
-
"P#_#_#_": 2,
|
38400
|
-
"_#_#F1#_": 1,
|
38401
|
-
"_#_#F2#_": 1,
|
38402
|
-
"F1": 1,
|
38403
|
-
"F2.": 1,
|
38404
|
-
"State#D#_#S": 1,
|
38405
|
-
"All_My_Children": 2,
|
38406
|
-
"bagof": 1,
|
38407
|
-
"Child#D1#F#": 1,
|
38408
|
-
"Move": 3,
|
38409
|
-
"move": 7,
|
38410
|
-
"Child": 2,
|
38411
|
-
"puzzle": 4,
|
38412
|
-
"solver": 1,
|
38413
|
-
"A/B/C/D/E/F/G/H/I": 3,
|
38414
|
-
"{": 3,
|
38415
|
-
"...": 3,
|
38416
|
-
"I": 5,
|
38417
|
-
"}": 3,
|
38418
|
-
"represents": 1,
|
38419
|
-
"empty": 2,
|
38420
|
-
"tile": 5,
|
38421
|
-
"/2/3/8/0/4/7/6/5": 1,
|
38422
|
-
"The": 1,
|
38423
|
-
"moves": 1,
|
38424
|
-
"left": 26,
|
38425
|
-
"A/0/C/D/E/F/H/I/J": 3,
|
38426
|
-
"/A/C/D/E/F/H/I/J": 1,
|
38427
|
-
"A/B/C/D/0/F/H/I/J": 4,
|
38428
|
-
"A/B/C/0/D/F/H/I/J": 1,
|
38429
|
-
"A/B/C/D/E/F/H/0/J": 3,
|
38430
|
-
"A/B/C/D/E/F/0/H/J": 1,
|
38431
|
-
"A/B/0/D/E/F/H/I/J": 2,
|
38432
|
-
"A/0/B/D/E/F/H/I/J": 1,
|
38433
|
-
"A/B/C/D/E/0/H/I/J": 3,
|
38434
|
-
"A/B/C/D/0/E/H/I/J": 1,
|
38435
|
-
"A/B/C/D/E/F/H/I/0": 2,
|
38436
|
-
"A/B/C/D/E/F/H/0/I": 1,
|
38437
|
-
"up": 17,
|
38438
|
-
"A/B/C/0/E/F/H/I/J": 3,
|
38439
|
-
"/B/C/A/E/F/H/I/J": 1,
|
38440
|
-
"A/0/C/D/B/F/H/I/J": 1,
|
38441
|
-
"A/B/0/D/E/C/H/I/J": 1,
|
38442
|
-
"A/B/C/D/E/F/0/I/J": 2,
|
38443
|
-
"A/B/C/0/E/F/D/I/J": 1,
|
38444
|
-
"A/B/C/D/0/F/H/E/J": 1,
|
38445
|
-
"A/B/C/D/E/0/H/I/F": 1,
|
38446
|
-
"right": 22,
|
38447
|
-
"A/C/0/D/E/F/H/I/J": 1,
|
38448
|
-
"A/B/C/D/F/0/H/I/J": 1,
|
38449
|
-
"A/B/C/D/E/F/H/J/0": 1,
|
38450
|
-
"/B/C/D/E/F/H/I/J": 2,
|
38451
|
-
"B/0/C/D/E/F/H/I/J": 1,
|
38452
|
-
"A/B/C/E/0/F/H/I/J": 1,
|
38453
|
-
"A/B/C/D/E/F/I/0/J": 1,
|
38454
|
-
"down": 15,
|
38455
|
-
"A/B/C/H/E/F/0/I/J": 1,
|
38456
|
-
"A/B/C/D/I/F/H/0/J": 1,
|
38457
|
-
"A/B/C/D/E/J/H/I/0": 1,
|
38458
|
-
"D/B/C/0/E/F/H/I/J": 1,
|
38459
|
-
"A/E/C/D/0/F/H/I/J": 1,
|
38460
|
-
"A/B/F/D/E/0/H/I/J": 1,
|
38461
|
-
"heuristic": 1,
|
38462
|
-
"Puzz": 3,
|
38463
|
-
"p_fcn": 2,
|
38464
|
-
"s_fcn": 2,
|
38465
|
-
"*S.": 1,
|
38466
|
-
"Manhattan": 1,
|
38467
|
-
"distance": 1,
|
38468
|
-
"Pa": 2,
|
38469
|
-
"b": 12,
|
38470
|
-
"Pb": 2,
|
38471
|
-
"c": 10,
|
38472
|
-
"Pc": 2,
|
38473
|
-
"Pd": 2,
|
38474
|
-
"e": 10,
|
38475
|
-
"E": 3,
|
38476
|
-
"Pe": 2,
|
38477
|
-
"f": 10,
|
38478
|
-
"Pf": 2,
|
38479
|
-
"g": 10,
|
38480
|
-
"G": 7,
|
38481
|
-
"Pg": 3,
|
38482
|
-
"h": 10,
|
38483
|
-
"Ph": 2,
|
38484
|
-
"i": 10,
|
38485
|
-
"Pi": 1,
|
38486
|
-
"Pi.": 1,
|
38487
|
-
"cycle": 1,
|
38488
|
-
"s_aux": 14,
|
38489
|
-
"S1": 2,
|
38490
|
-
"S2": 2,
|
38491
|
-
"S3": 2,
|
38492
|
-
"S4": 2,
|
38493
|
-
"S5": 2,
|
38494
|
-
"S6": 2,
|
38495
|
-
"S7": 2,
|
38496
|
-
"S8": 2,
|
38497
|
-
"S9": 1,
|
38498
|
-
"S9.": 1,
|
38499
|
-
"animation": 1,
|
38500
|
-
"using": 2,
|
38501
|
-
"VT100": 1,
|
38502
|
-
"character": 3,
|
38503
|
-
"graphics": 1,
|
38504
|
-
"animate": 2,
|
38505
|
-
"message.": 2,
|
38506
|
-
"initialize": 2,
|
38507
|
-
"cursor": 7,
|
38508
|
-
"get0": 2,
|
38509
|
-
"_X": 2,
|
38510
|
-
"play_back": 5,
|
38511
|
-
"dynamic": 1,
|
38512
|
-
"location/3.": 1,
|
38513
|
-
"A/B/C/D/E/F/H/I/J": 1,
|
38514
|
-
"cls": 2,
|
38515
|
-
"retractall": 1,
|
38516
|
-
"location": 32,
|
38517
|
-
"assert": 17,
|
38518
|
-
"J": 1,
|
38519
|
-
"draw_all.": 1,
|
38520
|
-
"draw_all": 1,
|
38521
|
-
"draw": 18,
|
38522
|
-
"call": 1,
|
38523
|
-
"Put": 1,
|
38524
|
-
"way": 1,
|
38525
|
-
"message": 1,
|
38526
|
-
"nl.": 1,
|
38527
|
-
"put": 16,
|
38528
|
-
"ESC": 1,
|
38529
|
-
"screen": 1,
|
38530
|
-
"quickly": 1,
|
38531
|
-
"video": 1,
|
38532
|
-
"attributes": 1,
|
38533
|
-
"bold": 1,
|
38534
|
-
"blink": 1,
|
38535
|
-
"not": 1,
|
38536
|
-
"working": 1,
|
38537
|
-
"plain": 1,
|
38538
|
-
"reverse_video": 2,
|
38539
|
-
"Tile": 35,
|
38540
|
-
"objects": 1,
|
38541
|
-
"map": 2,
|
38542
|
-
"s": 1,
|
38543
|
-
"Each": 1,
|
38544
|
-
"should": 1,
|
38545
|
-
"be": 1,
|
38546
|
-
"drawn": 2,
|
38547
|
-
"at": 1,
|
38548
|
-
"which": 1,
|
38549
|
-
"asserted": 1,
|
38550
|
-
"retracted": 1,
|
38551
|
-
"by": 1,
|
38552
|
-
"character_map": 3,
|
38553
|
-
"spot": 1,
|
38554
|
-
"to": 1,
|
38555
|
-
"retract": 8,
|
38556
|
-
"X0": 10,
|
38557
|
-
"Y0": 10,
|
38558
|
-
"Xnew": 6,
|
38559
|
-
"Ynew": 6,
|
38560
|
-
"Obj": 26,
|
38561
|
-
"plain.": 1,
|
38562
|
-
"hide": 10,
|
38563
|
-
"hide_row": 4,
|
38564
|
-
"Y1": 8,
|
38565
|
-
"X1": 8,
|
38566
|
-
"draw_row": 4,
|
38567
|
-
"an": 1,
|
38568
|
-
"Object": 1,
|
38569
|
-
"partition": 5,
|
38570
|
-
"Xs": 5,
|
38571
|
-
"Pivot": 4,
|
38572
|
-
"Smalls": 3,
|
38573
|
-
"Bigs": 3,
|
38574
|
-
"@": 1,
|
38575
|
-
"Rest": 4,
|
38576
|
-
"quicksort": 4,
|
38577
|
-
"Smaller": 2,
|
38578
|
-
"Bigger": 2,
|
38579
|
-
"male": 3,
|
38580
|
-
"john": 2,
|
38581
|
-
"peter": 3,
|
38582
|
-
"female": 2,
|
38583
|
-
"vick": 2,
|
38584
|
-
"christie": 3,
|
38585
|
-
"parents": 4,
|
38586
|
-
"brother": 1,
|
38587
|
-
"turing": 1,
|
38588
|
-
"Tape0": 2,
|
38589
|
-
"Tape": 2,
|
38590
|
-
"perform": 4,
|
38591
|
-
"q0": 1,
|
38592
|
-
"Ls": 12,
|
38593
|
-
"Rs": 16,
|
38594
|
-
"Ls1": 4,
|
38595
|
-
"qf": 1,
|
38596
|
-
"Q0": 2,
|
38597
|
-
"Ls0": 6,
|
38598
|
-
"Rs0": 6,
|
38599
|
-
"symbol": 3,
|
38600
|
-
"Sym": 6,
|
38601
|
-
"RsRest": 2,
|
38602
|
-
"once": 1,
|
38603
|
-
"rule": 1,
|
38604
|
-
"Q1": 2,
|
38605
|
-
"NewSym": 2,
|
38606
|
-
"Action": 2,
|
38607
|
-
"action": 4,
|
38608
|
-
"Rs1": 2,
|
38609
|
-
"stay": 1,
|
38610
|
-
"L": 2
|
38611
|
-
},
|
38612
38589
|
"Protocol Buffer": {
|
38613
38590
|
"package": 1,
|
38614
38591
|
"tutorial": 1,
|
@@ -43048,64 +43025,594 @@
|
|
43048
43025
|
"signature": 2,
|
43049
43026
|
"LAZY_BASE": 3,
|
43050
43027
|
"sig": 2,
|
43051
|
-
"type":
|
43052
|
-
"a":
|
43028
|
+
"type": 5,
|
43029
|
+
"a": 74,
|
43053
43030
|
"lazy": 12,
|
43054
|
-
"-":
|
43055
|
-
")":
|
43056
|
-
"end":
|
43031
|
+
"-": 19,
|
43032
|
+
")": 826,
|
43033
|
+
"end": 52,
|
43057
43034
|
"LAZY": 1,
|
43058
|
-
"bool":
|
43059
|
-
"val":
|
43035
|
+
"bool": 9,
|
43036
|
+
"val": 143,
|
43060
43037
|
"inject": 3,
|
43061
|
-
"toString":
|
43062
|
-
"(":
|
43063
|
-
"string":
|
43038
|
+
"toString": 3,
|
43039
|
+
"(": 822,
|
43040
|
+
"string": 14,
|
43064
43041
|
"eq": 2,
|
43065
|
-
"*":
|
43042
|
+
"*": 9,
|
43066
43043
|
"eqBy": 3,
|
43067
|
-
"compare":
|
43044
|
+
"compare": 7,
|
43068
43045
|
"order": 2,
|
43069
43046
|
"map": 2,
|
43070
|
-
"b":
|
43071
|
-
"structure":
|
43047
|
+
"b": 58,
|
43048
|
+
"structure": 10,
|
43072
43049
|
"Ops": 2,
|
43073
43050
|
"LazyBase": 2,
|
43074
|
-
"struct":
|
43051
|
+
"struct": 9,
|
43075
43052
|
"exception": 1,
|
43076
43053
|
"Undefined": 3,
|
43077
|
-
"fun":
|
43054
|
+
"fun": 51,
|
43078
43055
|
"delay": 3,
|
43079
|
-
"f":
|
43056
|
+
"f": 37,
|
43080
43057
|
"force": 9,
|
43081
43058
|
"undefined": 1,
|
43082
|
-
"fn":
|
43083
|
-
"raise":
|
43059
|
+
"fn": 124,
|
43060
|
+
"raise": 5,
|
43084
43061
|
"LazyMemoBase": 2,
|
43085
|
-
"datatype":
|
43086
|
-
"|":
|
43062
|
+
"datatype": 28,
|
43063
|
+
"|": 225,
|
43087
43064
|
"Done": 1,
|
43088
|
-
"of":
|
43089
|
-
"unit":
|
43090
|
-
"let":
|
43091
|
-
"open":
|
43065
|
+
"of": 90,
|
43066
|
+
"unit": 6,
|
43067
|
+
"let": 43,
|
43068
|
+
"open": 8,
|
43092
43069
|
"B": 1,
|
43093
|
-
"x":
|
43070
|
+
"x": 59,
|
43094
43071
|
"isUndefined": 2,
|
43095
|
-
"ignore":
|
43096
|
-
";":
|
43097
|
-
"false":
|
43098
|
-
"handle":
|
43099
|
-
"true":
|
43100
|
-
"if":
|
43101
|
-
"then":
|
43102
|
-
"else":
|
43103
|
-
"p":
|
43104
|
-
"y":
|
43072
|
+
"ignore": 2,
|
43073
|
+
";": 20,
|
43074
|
+
"false": 31,
|
43075
|
+
"handle": 3,
|
43076
|
+
"true": 35,
|
43077
|
+
"if": 50,
|
43078
|
+
"then": 50,
|
43079
|
+
"else": 50,
|
43080
|
+
"p": 6,
|
43081
|
+
"y": 44,
|
43105
43082
|
"op": 1,
|
43106
43083
|
"Lazy": 1,
|
43107
43084
|
"LazyFn": 2,
|
43108
|
-
"LazyMemo": 1
|
43085
|
+
"LazyMemo": 1,
|
43086
|
+
"functor": 2,
|
43087
|
+
"Main": 1,
|
43088
|
+
"S": 2,
|
43089
|
+
"MAIN_STRUCTS": 1,
|
43090
|
+
"MAIN": 1,
|
43091
|
+
"Compile": 3,
|
43092
|
+
"Place": 1,
|
43093
|
+
"t": 23,
|
43094
|
+
"Files": 3,
|
43095
|
+
"Generated": 4,
|
43096
|
+
"MLB": 4,
|
43097
|
+
"O": 4,
|
43098
|
+
"OUT": 3,
|
43099
|
+
"SML": 6,
|
43100
|
+
"TypeCheck": 3,
|
43101
|
+
"toInt": 1,
|
43102
|
+
"int": 1,
|
43103
|
+
"OptPred": 1,
|
43104
|
+
"Target": 1,
|
43105
|
+
"Yes": 1,
|
43106
|
+
"Show": 1,
|
43107
|
+
"Anns": 1,
|
43108
|
+
"PathMap": 1,
|
43109
|
+
"gcc": 5,
|
43110
|
+
"ref": 45,
|
43111
|
+
"arScript": 3,
|
43112
|
+
"asOpts": 6,
|
43113
|
+
"{": 79,
|
43114
|
+
"opt": 34,
|
43115
|
+
"pred": 15,
|
43116
|
+
"OptPred.t": 3,
|
43117
|
+
"}": 79,
|
43118
|
+
"list": 10,
|
43119
|
+
"[": 104,
|
43120
|
+
"]": 108,
|
43121
|
+
"ccOpts": 6,
|
43122
|
+
"linkOpts": 6,
|
43123
|
+
"buildConstants": 2,
|
43124
|
+
"debugRuntime": 3,
|
43125
|
+
"debugFormat": 5,
|
43126
|
+
"Dwarf": 3,
|
43127
|
+
"DwarfPlus": 3,
|
43128
|
+
"Dwarf2": 3,
|
43129
|
+
"Stabs": 3,
|
43130
|
+
"StabsPlus": 3,
|
43131
|
+
"option": 6,
|
43132
|
+
"NONE": 47,
|
43133
|
+
"expert": 3,
|
43134
|
+
"explicitAlign": 3,
|
43135
|
+
"Control.align": 1,
|
43136
|
+
"explicitChunk": 2,
|
43137
|
+
"Control.chunk": 1,
|
43138
|
+
"explicitCodegen": 5,
|
43139
|
+
"Native": 5,
|
43140
|
+
"Explicit": 5,
|
43141
|
+
"Control.codegen": 3,
|
43142
|
+
"keepGenerated": 3,
|
43143
|
+
"keepO": 3,
|
43144
|
+
"output": 16,
|
43145
|
+
"profileSet": 3,
|
43146
|
+
"profileTimeSet": 3,
|
43147
|
+
"runtimeArgs": 3,
|
43148
|
+
"show": 2,
|
43149
|
+
"Show.t": 1,
|
43150
|
+
"stop": 10,
|
43151
|
+
"Place.OUT": 1,
|
43152
|
+
"parseMlbPathVar": 3,
|
43153
|
+
"line": 9,
|
43154
|
+
"String.t": 1,
|
43155
|
+
"case": 83,
|
43156
|
+
"String.tokens": 7,
|
43157
|
+
"Char.isSpace": 8,
|
43158
|
+
"var": 3,
|
43159
|
+
"path": 7,
|
43160
|
+
"SOME": 68,
|
43161
|
+
"_": 83,
|
43162
|
+
"readMlbPathMap": 2,
|
43163
|
+
"file": 14,
|
43164
|
+
"File.t": 12,
|
43165
|
+
"not": 1,
|
43166
|
+
"File.canRead": 1,
|
43167
|
+
"Error.bug": 14,
|
43168
|
+
"concat": 52,
|
43169
|
+
"List.keepAllMap": 4,
|
43170
|
+
"File.lines": 2,
|
43171
|
+
"String.forall": 4,
|
43172
|
+
"v": 4,
|
43173
|
+
"targetMap": 5,
|
43174
|
+
"arch": 11,
|
43175
|
+
"MLton.Platform.Arch.t": 3,
|
43176
|
+
"os": 13,
|
43177
|
+
"MLton.Platform.OS.t": 3,
|
43178
|
+
"target": 28,
|
43179
|
+
"Promise.lazy": 1,
|
43180
|
+
"targetsDir": 5,
|
43181
|
+
"OS.Path.mkAbsolute": 4,
|
43182
|
+
"relativeTo": 4,
|
43183
|
+
"Control.libDir": 1,
|
43184
|
+
"potentialTargets": 2,
|
43185
|
+
"Dir.lsDirs": 1,
|
43186
|
+
"targetDir": 5,
|
43187
|
+
"osFile": 2,
|
43188
|
+
"OS.Path.joinDirFile": 3,
|
43189
|
+
"dir": 4,
|
43190
|
+
"archFile": 2,
|
43191
|
+
"File.contents": 2,
|
43192
|
+
"List.first": 2,
|
43193
|
+
"MLton.Platform.OS.fromString": 1,
|
43194
|
+
"MLton.Platform.Arch.fromString": 1,
|
43195
|
+
"in": 40,
|
43196
|
+
"setTargetType": 3,
|
43197
|
+
"usage": 48,
|
43198
|
+
"List.peek": 7,
|
43199
|
+
"...": 23,
|
43200
|
+
"Control": 3,
|
43201
|
+
"Target.arch": 2,
|
43202
|
+
"Target.os": 2,
|
43203
|
+
"hasCodegen": 8,
|
43204
|
+
"cg": 21,
|
43205
|
+
"z": 73,
|
43206
|
+
"Control.Target.arch": 4,
|
43207
|
+
"Control.Target.os": 2,
|
43208
|
+
"Control.Format.t": 1,
|
43209
|
+
"AMD64": 2,
|
43210
|
+
"x86Codegen": 9,
|
43211
|
+
"X86": 3,
|
43212
|
+
"amd64Codegen": 8,
|
43213
|
+
"<": 3,
|
43214
|
+
"Darwin": 6,
|
43215
|
+
"orelse": 7,
|
43216
|
+
"Control.format": 3,
|
43217
|
+
"Executable": 5,
|
43218
|
+
"Archive": 4,
|
43219
|
+
"hasNativeCodegen": 2,
|
43220
|
+
"defaultAlignIs8": 3,
|
43221
|
+
"Alpha": 1,
|
43222
|
+
"ARM": 1,
|
43223
|
+
"HPPA": 1,
|
43224
|
+
"IA64": 1,
|
43225
|
+
"MIPS": 1,
|
43226
|
+
"Sparc": 1,
|
43227
|
+
"S390": 1,
|
43228
|
+
"makeOptions": 3,
|
43229
|
+
"s": 168,
|
43230
|
+
"Fail": 2,
|
43231
|
+
"reportAnnotation": 4,
|
43232
|
+
"flag": 12,
|
43233
|
+
"e": 18,
|
43234
|
+
"Control.Elaborate.Bad": 1,
|
43235
|
+
"Control.Elaborate.Deprecated": 1,
|
43236
|
+
"ids": 2,
|
43237
|
+
"Control.warnDeprecated": 1,
|
43238
|
+
"Out.output": 2,
|
43239
|
+
"Out.error": 3,
|
43240
|
+
"List.toString": 1,
|
43241
|
+
"Control.Elaborate.Id.name": 1,
|
43242
|
+
"Control.Elaborate.Good": 1,
|
43243
|
+
"Control.Elaborate.Other": 1,
|
43244
|
+
"Popt": 1,
|
43245
|
+
"tokenizeOpt": 4,
|
43246
|
+
"opts": 4,
|
43247
|
+
"List.foreach": 5,
|
43248
|
+
"tokenizeTargetOpt": 4,
|
43249
|
+
"List.map": 3,
|
43250
|
+
"Normal": 29,
|
43251
|
+
"SpaceString": 48,
|
43252
|
+
"Align4": 2,
|
43253
|
+
"Align8": 2,
|
43254
|
+
"Expert": 72,
|
43255
|
+
"o": 8,
|
43256
|
+
"List.push": 22,
|
43257
|
+
"OptPred.Yes": 6,
|
43258
|
+
"boolRef": 20,
|
43259
|
+
"ChunkPerFunc": 1,
|
43260
|
+
"OneChunk": 1,
|
43261
|
+
"String.hasPrefix": 2,
|
43262
|
+
"prefix": 3,
|
43263
|
+
"String.dropPrefix": 1,
|
43264
|
+
"Char.isDigit": 3,
|
43265
|
+
"Int.fromString": 4,
|
43266
|
+
"n": 4,
|
43267
|
+
"Coalesce": 1,
|
43268
|
+
"limit": 1,
|
43269
|
+
"Bool": 10,
|
43270
|
+
"closureConvertGlobalize": 1,
|
43271
|
+
"closureConvertShrink": 1,
|
43272
|
+
"String.concatWith": 2,
|
43273
|
+
"Control.Codegen.all": 2,
|
43274
|
+
"Control.Codegen.toString": 2,
|
43275
|
+
"name": 7,
|
43276
|
+
"value": 4,
|
43277
|
+
"Compile.setCommandLineConstant": 2,
|
43278
|
+
"contifyIntoMain": 1,
|
43279
|
+
"debug": 4,
|
43280
|
+
"Control.Elaborate.processDefault": 1,
|
43281
|
+
"Control.defaultChar": 1,
|
43282
|
+
"Control.defaultInt": 5,
|
43283
|
+
"Control.defaultReal": 2,
|
43284
|
+
"Control.defaultWideChar": 2,
|
43285
|
+
"Control.defaultWord": 4,
|
43286
|
+
"Regexp.fromString": 7,
|
43287
|
+
"re": 34,
|
43288
|
+
"Regexp.compileDFA": 4,
|
43289
|
+
"diagPasses": 1,
|
43290
|
+
"Control.Elaborate.processEnabled": 2,
|
43291
|
+
"dropPasses": 1,
|
43292
|
+
"intRef": 8,
|
43293
|
+
"errorThreshhold": 1,
|
43294
|
+
"emitMain": 1,
|
43295
|
+
"exportHeader": 3,
|
43296
|
+
"Control.Format.all": 2,
|
43297
|
+
"Control.Format.toString": 2,
|
43298
|
+
"gcCheck": 1,
|
43299
|
+
"Limit": 1,
|
43300
|
+
"First": 1,
|
43301
|
+
"Every": 1,
|
43302
|
+
"Native.IEEEFP": 1,
|
43303
|
+
"indentation": 1,
|
43304
|
+
"Int": 8,
|
43305
|
+
"i": 8,
|
43306
|
+
"inlineNonRec": 6,
|
43307
|
+
"small": 19,
|
43308
|
+
"product": 19,
|
43309
|
+
"#product": 1,
|
43310
|
+
"inlineIntoMain": 1,
|
43311
|
+
"loops": 18,
|
43312
|
+
"inlineLeafA": 6,
|
43313
|
+
"repeat": 18,
|
43314
|
+
"size": 19,
|
43315
|
+
"inlineLeafB": 6,
|
43316
|
+
"keepCoreML": 1,
|
43317
|
+
"keepDot": 1,
|
43318
|
+
"keepMachine": 1,
|
43319
|
+
"keepRSSA": 1,
|
43320
|
+
"keepSSA": 1,
|
43321
|
+
"keepSSA2": 1,
|
43322
|
+
"keepSXML": 1,
|
43323
|
+
"keepXML": 1,
|
43324
|
+
"keepPasses": 1,
|
43325
|
+
"libname": 9,
|
43326
|
+
"loopPasses": 1,
|
43327
|
+
"Int.toString": 3,
|
43328
|
+
"markCards": 1,
|
43329
|
+
"maxFunctionSize": 1,
|
43330
|
+
"mlbPathVars": 4,
|
43331
|
+
"@": 3,
|
43332
|
+
"Native.commented": 1,
|
43333
|
+
"Native.copyProp": 1,
|
43334
|
+
"Native.cutoff": 1,
|
43335
|
+
"Native.liveTransfer": 1,
|
43336
|
+
"Native.liveStack": 1,
|
43337
|
+
"Native.moveHoist": 1,
|
43338
|
+
"Native.optimize": 1,
|
43339
|
+
"Native.split": 1,
|
43340
|
+
"Native.shuffle": 1,
|
43341
|
+
"err": 1,
|
43342
|
+
"optimizationPasses": 1,
|
43343
|
+
"il": 10,
|
43344
|
+
"set": 10,
|
43345
|
+
"Result.Yes": 6,
|
43346
|
+
"Result.No": 5,
|
43347
|
+
"polyvariance": 9,
|
43348
|
+
"hofo": 12,
|
43349
|
+
"rounds": 12,
|
43350
|
+
"preferAbsPaths": 1,
|
43351
|
+
"profPasses": 1,
|
43352
|
+
"profile": 6,
|
43353
|
+
"ProfileNone": 2,
|
43354
|
+
"ProfileAlloc": 1,
|
43355
|
+
"ProfileCallStack": 3,
|
43356
|
+
"ProfileCount": 1,
|
43357
|
+
"ProfileDrop": 1,
|
43358
|
+
"ProfileLabel": 1,
|
43359
|
+
"ProfileTimeLabel": 4,
|
43360
|
+
"ProfileTimeField": 2,
|
43361
|
+
"profileBranch": 1,
|
43362
|
+
"Regexp": 3,
|
43363
|
+
"seq": 3,
|
43364
|
+
"anys": 6,
|
43365
|
+
"compileDFA": 3,
|
43366
|
+
"profileC": 1,
|
43367
|
+
"profileInclExcl": 2,
|
43368
|
+
"profileIL": 3,
|
43369
|
+
"ProfileSource": 1,
|
43370
|
+
"ProfileSSA": 1,
|
43371
|
+
"ProfileSSA2": 1,
|
43372
|
+
"profileRaise": 2,
|
43373
|
+
"profileStack": 1,
|
43374
|
+
"profileVal": 1,
|
43375
|
+
"Show.Anns": 1,
|
43376
|
+
"Show.PathMap": 1,
|
43377
|
+
"showBasis": 1,
|
43378
|
+
"showDefUse": 1,
|
43379
|
+
"showTypes": 1,
|
43380
|
+
"Control.optimizationPasses": 4,
|
43381
|
+
"String.equals": 4,
|
43382
|
+
"Place.Files": 2,
|
43383
|
+
"Place.Generated": 2,
|
43384
|
+
"Place.O": 3,
|
43385
|
+
"Place.TypeCheck": 1,
|
43386
|
+
"#target": 2,
|
43387
|
+
"Self": 2,
|
43388
|
+
"Cross": 2,
|
43389
|
+
"SpaceString2": 6,
|
43390
|
+
"OptPred.Target": 6,
|
43391
|
+
"#1": 1,
|
43392
|
+
"trace": 4,
|
43393
|
+
"#2": 2,
|
43394
|
+
"typeCheck": 1,
|
43395
|
+
"verbosity": 4,
|
43396
|
+
"Silent": 3,
|
43397
|
+
"Top": 5,
|
43398
|
+
"Pass": 1,
|
43399
|
+
"Detail": 1,
|
43400
|
+
"warnAnn": 1,
|
43401
|
+
"warnDeprecated": 1,
|
43402
|
+
"zoneCutDepth": 1,
|
43403
|
+
"style": 6,
|
43404
|
+
"arg": 3,
|
43405
|
+
"desc": 3,
|
43406
|
+
"mainUsage": 3,
|
43407
|
+
"parse": 2,
|
43408
|
+
"Popt.makeUsage": 1,
|
43409
|
+
"showExpert": 1,
|
43410
|
+
"commandLine": 5,
|
43411
|
+
"args": 8,
|
43412
|
+
"lib": 2,
|
43413
|
+
"libDir": 2,
|
43414
|
+
"OS.Path.mkCanonical": 1,
|
43415
|
+
"result": 1,
|
43416
|
+
"targetStr": 3,
|
43417
|
+
"libTargetDir": 1,
|
43418
|
+
"targetArch": 4,
|
43419
|
+
"archStr": 1,
|
43420
|
+
"String.toLower": 2,
|
43421
|
+
"MLton.Platform.Arch.toString": 2,
|
43422
|
+
"targetOS": 5,
|
43423
|
+
"OSStr": 2,
|
43424
|
+
"MLton.Platform.OS.toString": 1,
|
43425
|
+
"positionIndependent": 3,
|
43426
|
+
"format": 7,
|
43427
|
+
"MinGW": 4,
|
43428
|
+
"Cygwin": 4,
|
43429
|
+
"Library": 6,
|
43430
|
+
"LibArchive": 3,
|
43431
|
+
"Control.positionIndependent": 1,
|
43432
|
+
"align": 1,
|
43433
|
+
"codegen": 4,
|
43434
|
+
"CCodegen": 1,
|
43435
|
+
"MLton.Rusage.measureGC": 1,
|
43436
|
+
"exnHistory": 1,
|
43437
|
+
"Bool.toString": 1,
|
43438
|
+
"Control.profile": 1,
|
43439
|
+
"Control.ProfileCallStack": 1,
|
43440
|
+
"sizeMap": 1,
|
43441
|
+
"Control.libTargetDir": 1,
|
43442
|
+
"ty": 4,
|
43443
|
+
"Bytes.toBits": 1,
|
43444
|
+
"Bytes.fromInt": 1,
|
43445
|
+
"lookup": 4,
|
43446
|
+
"use": 2,
|
43447
|
+
"on": 1,
|
43448
|
+
"must": 1,
|
43449
|
+
"x86": 1,
|
43450
|
+
"with": 1,
|
43451
|
+
"ieee": 1,
|
43452
|
+
"fp": 1,
|
43453
|
+
"can": 1,
|
43454
|
+
"No": 1,
|
43455
|
+
"Out.standard": 1,
|
43456
|
+
"input": 22,
|
43457
|
+
"rest": 3,
|
43458
|
+
"inputFile": 1,
|
43459
|
+
"File.base": 5,
|
43460
|
+
"File.fileOf": 1,
|
43461
|
+
"start": 6,
|
43462
|
+
"base": 3,
|
43463
|
+
"rec": 1,
|
43464
|
+
"loop": 3,
|
43465
|
+
"suf": 14,
|
43466
|
+
"hasNum": 2,
|
43467
|
+
"sufs": 2,
|
43468
|
+
"String.hasSuffix": 2,
|
43469
|
+
"suffix": 8,
|
43470
|
+
"Place.t": 1,
|
43471
|
+
"List.exists": 1,
|
43472
|
+
"File.withIn": 1,
|
43473
|
+
"csoFiles": 1,
|
43474
|
+
"Place.compare": 1,
|
43475
|
+
"GREATER": 5,
|
43476
|
+
"Place.toString": 2,
|
43477
|
+
"EQUAL": 5,
|
43478
|
+
"LESS": 5,
|
43479
|
+
"printVersion": 1,
|
43480
|
+
"tempFiles": 3,
|
43481
|
+
"tmpDir": 2,
|
43482
|
+
"tmpVar": 2,
|
43483
|
+
"default": 2,
|
43484
|
+
"MLton.Platform.OS.host": 2,
|
43485
|
+
"Process.getEnv": 1,
|
43486
|
+
"d": 32,
|
43487
|
+
"temp": 3,
|
43488
|
+
"out": 9,
|
43489
|
+
"File.temp": 1,
|
43490
|
+
"OS.Path.concat": 1,
|
43491
|
+
"Out.close": 2,
|
43492
|
+
"maybeOut": 10,
|
43493
|
+
"maybeOutBase": 4,
|
43494
|
+
"File.extension": 3,
|
43495
|
+
"outputBase": 2,
|
43496
|
+
"ext": 1,
|
43497
|
+
"OS.Path.splitBaseExt": 1,
|
43498
|
+
"defLibname": 6,
|
43499
|
+
"OS.Path.splitDirFile": 1,
|
43500
|
+
"String.extract": 1,
|
43501
|
+
"toAlNum": 2,
|
43502
|
+
"c": 42,
|
43503
|
+
"Char.isAlphaNum": 1,
|
43504
|
+
"#": 3,
|
43505
|
+
"CharVector.map": 1,
|
43506
|
+
"atMLtons": 1,
|
43507
|
+
"Vector.fromList": 1,
|
43508
|
+
"tokenize": 1,
|
43509
|
+
"rev": 2,
|
43510
|
+
"gccDebug": 3,
|
43511
|
+
"asDebug": 2,
|
43512
|
+
"compileO": 3,
|
43513
|
+
"inputs": 7,
|
43514
|
+
"libOpts": 2,
|
43515
|
+
"System.system": 4,
|
43516
|
+
"List.concat": 4,
|
43517
|
+
"linkArchives": 1,
|
43518
|
+
"String.contains": 1,
|
43519
|
+
"File.move": 1,
|
43520
|
+
"from": 1,
|
43521
|
+
"to": 1,
|
43522
|
+
"mkOutputO": 3,
|
43523
|
+
"Counter.t": 3,
|
43524
|
+
"File.dirOf": 2,
|
43525
|
+
"Counter.next": 1,
|
43526
|
+
"compileC": 2,
|
43527
|
+
"debugSwitches": 2,
|
43528
|
+
"compileS": 2,
|
43529
|
+
"compileCSO": 1,
|
43530
|
+
"List.forall": 1,
|
43531
|
+
"Counter.new": 1,
|
43532
|
+
"oFiles": 2,
|
43533
|
+
"List.fold": 1,
|
43534
|
+
"ac": 4,
|
43535
|
+
"extension": 6,
|
43536
|
+
"Option.toString": 1,
|
43537
|
+
"mkCompileSrc": 1,
|
43538
|
+
"listFiles": 2,
|
43539
|
+
"elaborate": 1,
|
43540
|
+
"compile": 2,
|
43541
|
+
"outputs": 2,
|
43542
|
+
"r": 3,
|
43543
|
+
"make": 1,
|
43544
|
+
"Int.inc": 1,
|
43545
|
+
"Out.openOut": 1,
|
43546
|
+
"print": 4,
|
43547
|
+
"outputHeader": 2,
|
43548
|
+
"done": 3,
|
43549
|
+
"Control.No": 1,
|
43550
|
+
"l": 2,
|
43551
|
+
"Layout.output": 1,
|
43552
|
+
"Out.newline": 1,
|
43553
|
+
"Vector.foreach": 1,
|
43554
|
+
"String.translate": 1,
|
43555
|
+
"/": 1,
|
43556
|
+
"Type": 1,
|
43557
|
+
"Check": 1,
|
43558
|
+
".c": 1,
|
43559
|
+
".s": 1,
|
43560
|
+
"invalid": 1,
|
43561
|
+
"MLton": 1,
|
43562
|
+
"Exn.finally": 1,
|
43563
|
+
"File.remove": 1,
|
43564
|
+
"doit": 1,
|
43565
|
+
"Process.makeCommandLine": 1,
|
43566
|
+
"main": 1,
|
43567
|
+
"mainWrapped": 1,
|
43568
|
+
"OS.Process.exit": 1,
|
43569
|
+
"CommandLine.arguments": 1,
|
43570
|
+
"RedBlackTree": 1,
|
43571
|
+
"key": 16,
|
43572
|
+
"entry": 12,
|
43573
|
+
"dict": 17,
|
43574
|
+
"Empty": 15,
|
43575
|
+
"Red": 41,
|
43576
|
+
"local": 1,
|
43577
|
+
"lk": 4,
|
43578
|
+
"tree": 4,
|
43579
|
+
"and": 2,
|
43580
|
+
"zipper": 3,
|
43581
|
+
"TOP": 5,
|
43582
|
+
"LEFTB": 10,
|
43583
|
+
"RIGHTB": 10,
|
43584
|
+
"delete": 3,
|
43585
|
+
"zip": 19,
|
43586
|
+
"Black": 40,
|
43587
|
+
"LEFTR": 8,
|
43588
|
+
"RIGHTR": 9,
|
43589
|
+
"bbZip": 28,
|
43590
|
+
"w": 17,
|
43591
|
+
"delMin": 8,
|
43592
|
+
"Match": 1,
|
43593
|
+
"joinRed": 3,
|
43594
|
+
"needB": 2,
|
43595
|
+
"del": 8,
|
43596
|
+
"NotFound": 2,
|
43597
|
+
"entry1": 16,
|
43598
|
+
"as": 7,
|
43599
|
+
"key1": 8,
|
43600
|
+
"datum1": 4,
|
43601
|
+
"joinBlack": 1,
|
43602
|
+
"insertShadow": 3,
|
43603
|
+
"datum": 1,
|
43604
|
+
"oldEntry": 7,
|
43605
|
+
"ins": 8,
|
43606
|
+
"left": 10,
|
43607
|
+
"right": 10,
|
43608
|
+
"restore_left": 1,
|
43609
|
+
"restore_right": 1,
|
43610
|
+
"app": 3,
|
43611
|
+
"ap": 7,
|
43612
|
+
"new": 1,
|
43613
|
+
"insert": 2,
|
43614
|
+
"table": 14,
|
43615
|
+
"clear": 1
|
43109
43616
|
},
|
43110
43617
|
"Stylus": {
|
43111
43618
|
"border": 6,
|
@@ -46342,7 +46849,7 @@
|
|
46342
46849
|
"Bluespec": 1298,
|
46343
46850
|
"Brightscript": 579,
|
46344
46851
|
"C": 58858,
|
46345
|
-
"C++":
|
46852
|
+
"C++": 31181,
|
46346
46853
|
"Ceylon": 50,
|
46347
46854
|
"Clojure": 510,
|
46348
46855
|
"COBOL": 90,
|
@@ -46364,11 +46871,12 @@
|
|
46364
46871
|
"Forth": 1516,
|
46365
46872
|
"GAS": 133,
|
46366
46873
|
"GLSL": 3766,
|
46367
|
-
"Gosu":
|
46874
|
+
"Gosu": 410,
|
46368
46875
|
"Groovy": 69,
|
46369
46876
|
"Groovy Server Pages": 91,
|
46370
46877
|
"Haml": 4,
|
46371
46878
|
"Handlebars": 69,
|
46879
|
+
"IDL": 418,
|
46372
46880
|
"Idris": 148,
|
46373
46881
|
"INI": 27,
|
46374
46882
|
"Ioke": 2,
|
@@ -46415,12 +46923,13 @@
|
|
46415
46923
|
"Parrot Internal Representation": 5,
|
46416
46924
|
"Pascal": 30,
|
46417
46925
|
"Perl": 17497,
|
46926
|
+
"Perl6": 372,
|
46418
46927
|
"PHP": 20724,
|
46419
46928
|
"Pod": 658,
|
46420
46929
|
"PogoScript": 250,
|
46930
|
+
"PostScript": 107,
|
46421
46931
|
"PowerShell": 12,
|
46422
46932
|
"Processing": 74,
|
46423
|
-
"Prolog": 4040,
|
46424
46933
|
"Protocol Buffer": 63,
|
46425
46934
|
"Python": 5715,
|
46426
46935
|
"R": 175,
|
@@ -46441,7 +46950,7 @@
|
|
46441
46950
|
"Shell": 3744,
|
46442
46951
|
"Slash": 187,
|
46443
46952
|
"Squirrel": 130,
|
46444
|
-
"Standard ML":
|
46953
|
+
"Standard ML": 6405,
|
46445
46954
|
"Stylus": 76,
|
46446
46955
|
"SuperCollider": 133,
|
46447
46956
|
"Tea": 3,
|
@@ -46478,7 +46987,7 @@
|
|
46478
46987
|
"Bluespec": 2,
|
46479
46988
|
"Brightscript": 1,
|
46480
46989
|
"C": 26,
|
46481
|
-
"C++":
|
46990
|
+
"C++": 27,
|
46482
46991
|
"Ceylon": 1,
|
46483
46992
|
"Clojure": 7,
|
46484
46993
|
"COBOL": 4,
|
@@ -46500,11 +47009,12 @@
|
|
46500
47009
|
"Forth": 7,
|
46501
47010
|
"GAS": 1,
|
46502
47011
|
"GLSL": 3,
|
46503
|
-
"Gosu":
|
47012
|
+
"Gosu": 4,
|
46504
47013
|
"Groovy": 2,
|
46505
47014
|
"Groovy Server Pages": 4,
|
46506
47015
|
"Haml": 1,
|
46507
47016
|
"Handlebars": 2,
|
47017
|
+
"IDL": 4,
|
46508
47018
|
"Idris": 1,
|
46509
47019
|
"INI": 2,
|
46510
47020
|
"Ioke": 1,
|
@@ -46551,12 +47061,13 @@
|
|
46551
47061
|
"Parrot Internal Representation": 1,
|
46552
47062
|
"Pascal": 1,
|
46553
47063
|
"Perl": 14,
|
47064
|
+
"Perl6": 3,
|
46554
47065
|
"PHP": 9,
|
46555
47066
|
"Pod": 1,
|
46556
47067
|
"PogoScript": 1,
|
47068
|
+
"PostScript": 1,
|
46557
47069
|
"PowerShell": 2,
|
46558
47070
|
"Processing": 1,
|
46559
|
-
"Prolog": 6,
|
46560
47071
|
"Protocol Buffer": 1,
|
46561
47072
|
"Python": 7,
|
46562
47073
|
"R": 2,
|
@@ -46577,7 +47088,7 @@
|
|
46577
47088
|
"Shell": 37,
|
46578
47089
|
"Slash": 1,
|
46579
47090
|
"Squirrel": 1,
|
46580
|
-
"Standard ML":
|
47091
|
+
"Standard ML": 4,
|
46581
47092
|
"Stylus": 1,
|
46582
47093
|
"SuperCollider": 1,
|
46583
47094
|
"Tea": 1,
|
@@ -46600,5 +47111,5 @@
|
|
46600
47111
|
"Xtend": 2,
|
46601
47112
|
"YAML": 1
|
46602
47113
|
},
|
46603
|
-
"md5": "
|
47114
|
+
"md5": "3969c4c97eb1dc3e7063e0478775dd9a"
|
46604
47115
|
}
|