github-linguist 3.0.0 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac52d6c6ea94fe5bd2e524ab0ef7e2ca9514db9a
4
- data.tar.gz: bceefdfc56bc096a82f7c51d63d57b89f3d69573
3
+ metadata.gz: 838570607a936e2f174977152ff0bbae10bb1b1e
4
+ data.tar.gz: 9b39ccd935fca2893fa6a162f88bc362aebd32f3
5
5
  SHA512:
6
- metadata.gz: 22b0bdbd4ad70bacca38c0773f49ea560e0ba18eb0f047abbc7db78b2979066878ee5ca310bfad8571831a401077d76d5ad91607560d3f4418eb0f46fecb6a9c
7
- data.tar.gz: f63bd7ba70658cea43c668cad35fceef3ddbea9a1bf8ad19040f72907086cf542d3f11529104f3327975e4698226f2ac7584eebe1cab363ed656d8ec445fd63e
6
+ metadata.gz: b971f10f9b9881da94090dd011ae9b9fc66dac2bb46eac71987a52ace700e896a5cef6abd58090811aaf3ba90252cde733e9eacfb87a37f0e392a1fc1af53eaf
7
+ data.tar.gz: 42d581654c0c7d8a1262739b499ad198b34841c51ce8e8f07a5a02d5fef690306274a23d73efa9dbb811e929c79d22d303541753af7aabb8d37ed42684045d54
@@ -92,13 +92,20 @@ module Linguist
92
92
 
93
93
  # Public: Detects the Language of the blob.
94
94
  #
95
- # blob - an object that implements the Linguist `Blob` interface;
95
+ # blob - an object that includes the Linguist `BlobHelper` interface;
96
96
  # see Linguist::LazyBlob and Linguist::FileBlob for examples
97
97
  #
98
98
  # Returns Language or nil.
99
99
  def self.detect(blob)
100
100
  name = blob.name.to_s
101
101
 
102
+ # Check if the blob is possibly binary and bail early; this is a cheap
103
+ # test that uses the extension name to guess a binary binary mime type.
104
+ #
105
+ # We'll perform a more comprehensive test later which actually involves
106
+ # looking for binary characters in the blob
107
+ return nil if blob.likely_binary? || blob.binary?
108
+
102
109
  # A bit of an elegant hack. If the file is executable but extensionless,
103
110
  # append a "magic" extension so it can be classified with other
104
111
  # languages that have shebang scripts.
@@ -116,7 +123,7 @@ module Linguist
116
123
  data = blob.data
117
124
  possible_language_names = possible_languages.map(&:name)
118
125
 
119
- # Don't bother with emptiness
126
+ # Don't bother with binary contents or an empty file
120
127
  if data.nil? || data == ""
121
128
  nil
122
129
  # Check if there's a shebang line and use that as authoritative
@@ -394,7 +401,7 @@ module Linguist
394
401
  #
395
402
  # Returns the extensions Array
396
403
  attr_reader :filenames
397
-
404
+
398
405
  # Public: Return all possible extensions for language
399
406
  def all_extensions
400
407
  (extensions + [primary_extension]).uniq
@@ -89,7 +89,7 @@ Agda:
89
89
 
90
90
  Alloy:
91
91
  type: programming # 'modeling' would be more appropiate
92
- lexer: Text only
92
+ lexer: Alloy
93
93
  color: "#cc5c24"
94
94
  extensions:
95
95
  - .als
@@ -157,7 +157,6 @@ Assembly:
157
157
  - nasm
158
158
  extensions:
159
159
  - .asm
160
- - .inc
161
160
 
162
161
  Augeas:
163
162
  type: programming
@@ -222,6 +221,8 @@ BlitzBasic:
222
221
  - .decls
223
222
 
224
223
  BlitzMax:
224
+ type: programming
225
+ color: "#cd6400"
225
226
  extensions:
226
227
  - .bmx
227
228
 
@@ -800,6 +801,12 @@ Gosu:
800
801
  extensions:
801
802
  - .gs
802
803
 
804
+ Grace:
805
+ type: programming
806
+ lexer: Text only
807
+ extensions:
808
+ - .grace
809
+
803
810
  Grammatical Framework:
804
811
  type: programming
805
812
  lexer: Haskell
@@ -1397,6 +1404,13 @@ Nimrod:
1397
1404
  - .nim
1398
1405
  - .nimrod
1399
1406
 
1407
+ Nit:
1408
+ type: programming
1409
+ lexer: Text only
1410
+ color: "#0d8921"
1411
+ extensions:
1412
+ - .nit
1413
+
1400
1414
  Nix:
1401
1415
  type: programming
1402
1416
  lexer: Nix
@@ -1538,6 +1552,8 @@ PHP:
1538
1552
  - .phpt
1539
1553
  filenames:
1540
1554
  - Phakefile
1555
+ interpreters:
1556
+ - php
1541
1557
 
1542
1558
  Pan:
1543
1559
  type: programming
@@ -1890,6 +1906,7 @@ Ruby:
1890
1906
  - Jarfile
1891
1907
  - Mavenfile
1892
1908
  - Podfile
1909
+ - Puppetfile
1893
1910
  - Thorfile
1894
1911
  - Vagrantfile
1895
1912
  - buildfile
@@ -33,8 +33,7 @@
33
33
  ".aj"
34
34
  ],
35
35
  "Assembly": [
36
- ".asm",
37
- ".inc"
36
+ ".asm"
38
37
  ],
39
38
  "AutoHotkey": [
40
39
  ".ahk"
@@ -45,6 +44,9 @@
45
44
  "BlitzBasic": [
46
45
  ".bb"
47
46
  ],
47
+ "BlitzMax": [
48
+ ".bmx"
49
+ ],
48
50
  "Bluespec": [
49
51
  ".bsv"
50
52
  ],
@@ -187,6 +189,9 @@
187
189
  ".gsx",
188
190
  ".vark"
189
191
  ],
192
+ "Grace": [
193
+ ".grace"
194
+ ],
190
195
  "Grammatical Framework": [
191
196
  ".gf"
192
197
  ],
@@ -364,6 +369,9 @@
364
369
  "Nimrod": [
365
370
  ".nim"
366
371
  ],
372
+ "Nit": [
373
+ ".nit"
374
+ ],
367
375
  "Nix": [
368
376
  ".nix"
369
377
  ],
@@ -783,8 +791,8 @@
783
791
  "exception.zep.php"
784
792
  ]
785
793
  },
786
- "tokens_total": 643530,
787
- "languages_total": 845,
794
+ "tokens_total": 629226,
795
+ "languages_total": 867,
788
796
  "tokens": {
789
797
  "ABAP": {
790
798
  "*/**": 1,
@@ -3155,404 +3163,22 @@
3155
3163
  "_cache.size": 1
3156
3164
  },
3157
3165
  "Assembly": {
3158
- ";": 20,
3159
- "flat": 4,
3160
- "assembler": 6,
3161
- "core": 2,
3162
- "Copyright": 4,
3163
- "(": 13,
3164
- "c": 4,
3165
- ")": 6,
3166
- "-": 87,
3167
- "Tomasz": 4,
3168
- "Grysztar.": 4,
3169
- "All": 4,
3170
- "rights": 4,
3171
- "reserved.": 4,
3172
- "xor": 52,
3173
- "eax": 510,
3174
- "mov": 1253,
3175
- "[": 2026,
3176
- "stub_size": 1,
3177
- "]": 2026,
3178
- "current_pass": 16,
3179
- "ax": 87,
3180
- "resolver_flags": 1,
3181
- "number_of_sections": 1,
3182
- "actual_fixups_size": 1,
3183
- "assembler_loop": 2,
3184
- "labels_list": 3,
3185
- "tagged_blocks": 23,
3186
- "additional_memory": 6,
3187
- "free_additional_memory": 2,
3188
- "additional_memory_end": 9,
3189
- "structures_buffer": 9,
3190
- "esi": 619,
3191
- "source_start": 1,
3192
- "edi": 250,
3193
- "code_start": 2,
3194
- "dword": 87,
3195
- "adjustment": 4,
3196
- "+": 232,
3197
- "addressing_space": 17,
3198
- "error_line": 16,
3199
- "counter": 13,
3200
- "format_flags": 2,
3201
- "number_of_relocations": 1,
3202
- "undefined_data_end": 4,
3203
- "file_extension": 1,
3204
- "next_pass_needed": 16,
3205
- "al": 1174,
3206
- "output_format": 3,
3207
- "adjustment_sign": 2,
3208
- "code_type": 106,
3209
- "call": 845,
3210
- "init_addressing_space": 6,
3211
- "pass_loop": 2,
3212
- "assemble_line": 3,
3213
- "jnc": 11,
3214
- "cmp": 1088,
3215
- "je": 485,
3216
- "pass_done": 2,
3217
- "sub": 64,
3218
- "h": 376,
3219
- "current_line": 24,
3220
- "jmp": 450,
3221
- "missing_end_directive": 7,
3222
- "close_pass": 1,
3223
- "check_symbols": 2,
3224
- "memory_end": 7,
3225
- "jae": 34,
3226
- "symbols_checked": 2,
3227
- "test": 95,
3228
- "byte": 549,
3229
- "jz": 107,
3230
- "symbol_defined_ok": 5,
3231
- "cx": 42,
3232
- "jne": 485,
3233
- "and": 50,
3234
- "not": 42,
3235
- "or": 194,
3236
- "use_prediction_ok": 5,
3237
- "jnz": 125,
3238
- "check_use_prediction": 2,
3239
- "use_misprediction": 3,
3240
- "check_next_symbol": 5,
3241
- "define_misprediction": 4,
3242
- "check_define_prediction": 2,
3243
- "add": 76,
3244
- "LABEL_STRUCTURE_SIZE": 1,
3245
- "next_pass": 3,
3246
- "assemble_ok": 2,
3247
- "error": 7,
3248
- "undefined_symbol": 2,
3249
- "error_confirmed": 3,
3250
- "error_info": 2,
3251
- "error_handler": 3,
3252
- "esp": 14,
3253
- "ret": 70,
3254
- "inc": 87,
3255
- "passes_limit": 3,
3256
- "code_cannot_be_generated": 1,
3257
- "create_addressing_space": 1,
3258
- "ebx": 336,
3259
- "Ah": 25,
3260
- "illegal_instruction": 48,
3261
- "Ch": 11,
3262
- "jbe": 11,
3263
- "out_of_memory": 19,
3264
- "ja": 28,
3265
- "lods": 366,
3266
- "assemble_instruction": 2,
3267
- "jb": 34,
3268
- "source_end": 2,
3269
- "define_label": 2,
3270
- "define_constant": 2,
3271
- "label_addressing_space": 2,
3272
- "Fh": 73,
3273
- "new_line": 2,
3274
- "code_type_setting": 2,
3275
- "segment_prefix": 2,
3276
- "instruction_assembled": 138,
3277
- "prefixed_instruction": 11,
3278
- "symbols_file": 4,
3279
- "continue_line": 8,
3280
- "line_assembled": 3,
3281
- "invalid_use_of_symbol": 17,
3282
- "reserved_word_used_as_symbol": 6,
3283
- "label_size": 5,
3284
- "make_label": 3,
3285
- "edx": 219,
3286
- "cl": 42,
3287
- "ebp": 49,
3288
- "ds": 21,
3289
- "sbb": 9,
3290
- "jp": 2,
3291
- "label_value_ok": 2,
3292
- "recoverable_overflow": 4,
3293
- "address_sign": 4,
3294
- "make_virtual_label": 2,
3295
- "xchg": 31,
3296
- "ch": 55,
3297
- "shr": 30,
3298
- "neg": 4,
3299
- "setnz": 5,
3300
- "ah": 229,
3301
- "finish_label": 2,
3302
- "setne": 14,
3303
- "finish_label_symbol": 2,
3304
- "b": 30,
3305
- "label_symbol_ok": 2,
3306
- "new_label": 2,
3307
- "symbol_already_defined": 3,
3308
- "btr": 2,
3309
- "jc": 28,
3310
- "requalified_label": 2,
3311
- "label_made": 4,
3312
- "push": 150,
3313
- "get_constant_value": 4,
3314
- "dl": 58,
3315
- "size_override": 7,
3316
- "get_value": 2,
3317
- "pop": 99,
3318
- "bl": 124,
3319
- "ecx": 153,
3320
- "constant_referencing_mode_ok": 2,
3321
- "value_type": 42,
3322
- "make_constant": 2,
3323
- "value_sign": 3,
3324
- "constant_symbol_ok": 2,
3325
- "symbol_identifier": 4,
3326
- "new_constant": 2,
3327
- "redeclare_constant": 2,
3328
- "requalified_constant": 2,
3329
- "make_addressing_space_label": 3,
3330
- "dx": 27,
3331
- "operand_size": 121,
3332
- "operand_prefix": 9,
3333
- "opcode_prefix": 30,
3334
- "rex_prefix": 9,
3335
- "vex_required": 2,
3336
- "vex_register": 1,
3337
- "immediate_size": 9,
3338
- "instruction_handler": 32,
3339
- "movzx": 13,
3340
- "word": 79,
3341
- "extra_characters_on_line": 8,
3342
- "clc": 11,
3343
- "dec": 30,
3344
- "stc": 9,
3345
- "org_directive": 1,
3346
- "invalid_argument": 28,
3347
- "invalid_value": 21,
3348
- "get_qword_value": 5,
3349
- "in_virtual": 2,
3350
- "org_space_ok": 2,
3351
- "close_virtual_addressing_space": 3,
3352
- "org_value_ok": 2,
3353
- "bts": 1,
3354
- "label_directive": 1,
3355
- "get_label_size": 2,
3356
- "label_size_ok": 2,
3357
- "get_free_label_value": 2,
3358
- "get_address_value": 3,
3359
- "bh": 34,
3360
- "bp": 2,
3361
- "shl": 17,
3362
- "bx": 8,
3363
- "make_free_label": 1,
3364
- "address_symbol": 2,
3365
- "load_directive": 1,
3366
- "load_size_ok": 2,
3367
- "value": 38,
3368
- "get_data_point": 3,
3369
- "value_loaded": 2,
3370
- "rep": 7,
3371
- "movs": 8,
3372
- "get_data_address": 5,
3373
- "addressing_space_unavailable": 3,
3374
- "symbol_out_of_scope": 1,
3375
- "get_addressing_space": 3,
3376
- "store_label_reference": 1,
3377
- "calculate_relative_offset": 2,
3378
- "data_address_type_ok": 2,
3379
- "adc": 9,
3380
- "bad_data_address": 3,
3381
- "store_directive": 1,
3382
- "sized_store": 2,
3383
- "get_byte_value": 23,
3384
- "store_value_ok": 2,
3385
- "undefined_data_start": 3,
3386
- "display_directive": 2,
3387
- "display_byte": 2,
3388
- "stos": 107,
3389
- "display_next": 2,
3390
- "show_display_buffer": 2,
3391
- "display_done": 3,
3392
- "display_messages": 2,
3393
- "skip_block": 2,
3394
- "display_block": 4,
3395
- "times_directive": 1,
3396
- "get_count_value": 6,
3397
- "zero_times": 3,
3398
- "times_argument_ok": 2,
3399
- "counter_limit": 7,
3400
- "times_loop": 2,
3401
- "stack_overflow": 2,
3402
- "stack_limit": 2,
3403
- "times_done": 2,
3404
- "skip_symbol": 5,
3405
- "virtual_directive": 3,
3406
- "virtual_at_current": 2,
3407
- "set_virtual": 2,
3408
- "allocate_structure_data": 5,
3409
- "find_structure_data": 6,
3410
- "scan_structures": 2,
3411
- "no_such_structure": 2,
3412
- "structure_data_found": 2,
3413
- "end_virtual": 2,
3414
- "unexpected_instruction": 18,
3415
- "remove_structure_data": 7,
3416
- "lea": 8,
3417
- "std": 2,
3418
- "cld": 2,
3419
- "addressing_space_closed": 2,
3420
- "virtual_byte_ok": 2,
3421
- "virtual_word_ok": 2,
3422
- "repeat_directive": 7,
3423
- "zero_repeat": 2,
3424
- "end_repeat": 2,
3425
- "continue_repeating": 2,
3426
- "stop_repeat": 2,
3427
- "find_end_repeat": 4,
3428
- "find_structure_end": 5,
3429
- "while_directive": 7,
3430
- "do_while": 2,
3431
- "calculate_logical_expression": 3,
3432
- "while_true": 2,
3433
- "stop_while": 2,
3434
- "find_end_while": 3,
3435
- "end_while": 2,
3436
- "too_many_repeats": 1,
3437
- "if_directive": 13,
3438
- "if_true": 2,
3439
- "find_else": 4,
3440
- "else_true": 3,
3441
- "make_if_structure": 2,
3442
- "else_directive": 3,
3443
- "found_else": 2,
3444
- "skip_else": 3,
3445
- "find_end_if": 3,
3446
- "end_if": 2,
3447
- "else_found": 2,
3448
- "find_end_directive": 10,
3449
- "no_end_directive": 2,
3450
- "skip_labels": 2,
3451
- "labels_ok": 2,
3452
- "prefix_instruction": 2,
3453
- "skip_repeat": 2,
3454
- "skip_while": 2,
3455
- "skip_if": 2,
3456
- "structure_end": 4,
3457
- "end_directive": 2,
3458
- "skip_if_block": 4,
3459
- "if_block_skipped": 2,
3460
- "skip_after_else": 3,
3461
- "data_directive": 1,
3462
- "end_data": 1,
3463
- "break_directive": 1,
3464
- "find_breakable_structure": 4,
3465
- "break_repeat": 2,
3466
- "break_while": 2,
3467
- "break_if": 2,
3468
- "data_bytes": 1,
3469
- "define_data": 8,
3470
- "get_byte": 2,
3471
- "undefined_data": 7,
3472
- "get_string": 2,
3473
- "mark_undefined_data": 2,
3474
- "undefined_data_ok": 2,
3475
- "simple_data_value": 3,
3476
- "skip_expression": 1,
3477
- "duplicate_zero_times": 2,
3478
- "duplicate_single_data_value": 3,
3479
- "duplicate_data": 2,
3480
- "duplicated_values": 2,
3481
- "near": 3,
3482
- "data_defined": 5,
3483
- "skip_single_data_value": 2,
3484
- "skip_data_value": 2,
3485
- "data_unicode": 1,
3486
- "base_code": 195,
3487
- "define_words": 2,
3488
- "data_words": 1,
3489
- "get_word": 2,
3490
- "scas": 10,
3491
- "word_data_value": 2,
3492
- "word_string": 2,
3493
- "get_word_value": 19,
3494
- "mark_relocation": 26,
3495
- "jecxz": 1,
3496
- "word_string_ok": 2,
3497
- "ecx*2": 1,
3498
- "copy_word_string": 2,
3499
- "loop": 2,
3500
- "data_dwords": 1,
3501
- "get_dword": 2,
3502
- "get_dword_value": 13,
3503
- "complex_dword": 2,
3504
- "invalid_operand": 239,
3505
- "data_pwords": 1,
3506
- "get_pword": 2,
3507
- "get_pword_value": 1,
3508
- "complex_pword": 2,
3509
- "data_qwords": 1,
3510
- "get_qword": 2,
3511
- "data_twords": 1,
3512
- "get_tword": 2,
3513
- "complex_tword": 2,
3514
- "fp_zero_tword": 2,
3515
- "FFFh": 3,
3516
- "jo": 2,
3517
- "value_out_of_range": 10,
3518
- "jge": 5,
3519
- "jg": 1,
3520
- "tword_exp_ok": 3,
3521
- "large_shift": 2,
3522
- "shrd": 1,
3523
- "tword_mantissa_shift_done": 2,
3524
- "store_shifted_mantissa": 2,
3525
- "data_file": 2,
3526
- "open_binary_file": 2,
3527
- "lseek": 5,
3528
- "position_ok": 2,
3529
- "size_ok": 2,
3530
- "read": 3,
3531
- "error_reading_file": 1,
3532
- "close": 3,
3533
- "find_current_source_path": 2,
3534
- "get_current_path": 3,
3535
- "lodsb": 12,
3536
- "stosb": 6,
3537
- "cut_current_path": 1,
3538
- "current_path_ok": 1,
3539
- "/": 1,
3540
- ".": 7,
3541
- "invalid_align_value": 3,
3542
- "section_not_aligned_enough": 4,
3543
- "make_alignment": 3,
3544
- "pe_alignment": 2,
3545
- "nops": 2,
3546
- "reserved_data": 2,
3547
- "nops_stosb_ok": 2,
3548
- "nops_stosw_ok": 2,
3549
- "err_directive": 1,
3550
- "invoked_error": 2,
3551
- "assert_directive": 1,
3552
- "assertion_failed": 1,
3553
- "interface": 2,
3554
- "for": 2,
3555
- "Win32": 2,
3166
+ ";": 3,
3167
+ "flat": 1,
3168
+ "assembler": 2,
3169
+ "interface": 1,
3170
+ "for": 1,
3171
+ "Win32": 1,
3172
+ "Copyright": 1,
3173
+ "(": 2,
3174
+ "c": 1,
3175
+ ")": 2,
3176
+ "-": 2,
3177
+ "Tomasz": 1,
3178
+ "Grysztar.": 1,
3179
+ "All": 1,
3180
+ "rights": 1,
3181
+ "reserved.": 1,
3556
3182
  "format": 1,
3557
3183
  "PE": 1,
3558
3184
  "console": 1,
@@ -3561,915 +3187,154 @@
3561
3187
  "readable": 4,
3562
3188
  "executable": 1,
3563
3189
  "start": 1,
3564
- "con_handle": 8,
3565
- "STD_OUTPUT_HANDLE": 2,
3190
+ "mov": 28,
3191
+ "[": 25,
3192
+ "con_handle": 2,
3193
+ "]": 25,
3194
+ "STD_OUTPUT_HANDLE": 1,
3195
+ "esi": 12,
3566
3196
  "_logo": 2,
3567
- "display_string": 19,
3197
+ "call": 25,
3198
+ "display_string": 7,
3568
3199
  "get_params": 2,
3200
+ "jc": 3,
3569
3201
  "information": 2,
3570
- "init_memory": 2,
3202
+ "init_memory": 1,
3571
3203
  "_memory_prefix": 2,
3572
- "memory_start": 4,
3573
- "display_number": 8,
3204
+ "eax": 18,
3205
+ "memory_end": 1,
3206
+ "sub": 4,
3207
+ "memory_start": 1,
3208
+ "add": 2,
3209
+ "additional_memory_end": 1,
3210
+ "additional_memory": 1,
3211
+ "shr": 1,
3212
+ "display_number": 5,
3574
3213
  "_memory_suffix": 2,
3575
3214
  "GetTickCount": 3,
3576
3215
  "start_time": 3,
3577
3216
  "preprocessor": 1,
3578
3217
  "parser": 1,
3579
3218
  "formatter": 1,
3580
- "display_user_messages": 3,
3219
+ "display_user_messages": 1,
3220
+ "movzx": 1,
3221
+ "current_pass": 1,
3222
+ "inc": 1,
3581
3223
  "_passes_suffix": 2,
3582
- "div": 8,
3224
+ "xor": 5,
3225
+ "edx": 15,
3226
+ "ebx": 4,
3227
+ "div": 2,
3228
+ "or": 11,
3229
+ "jz": 11,
3583
3230
  "display_bytes_count": 2,
3584
- "display_character": 6,
3231
+ "push": 1,
3232
+ "dl": 1,
3233
+ "display_character": 1,
3234
+ "pop": 1,
3585
3235
  "_seconds_suffix": 2,
3586
3236
  "written_size": 1,
3587
3237
  "_bytes_suffix": 2,
3588
- "exit_program": 5,
3238
+ "al": 48,
3239
+ "jmp": 12,
3240
+ "exit_program": 2,
3589
3241
  "_usage": 2,
3590
3242
  "input_file": 4,
3591
3243
  "output_file": 3,
3592
- "memory_setting": 4,
3244
+ "symbols_file": 2,
3245
+ "memory_setting": 3,
3246
+ "passes_limit": 2,
3593
3247
  "GetCommandLine": 2,
3248
+ "edi": 4,
3594
3249
  "params": 2,
3595
3250
  "find_command_start": 2,
3251
+ "lodsb": 11,
3252
+ "cmp": 31,
3253
+ "h": 18,
3254
+ "je": 25,
3596
3255
  "skip_quoted_name": 3,
3597
3256
  "skip_name": 2,
3598
3257
  "find_param": 7,
3599
3258
  "all_params": 5,
3600
3259
  "option_param": 2,
3601
- "Dh": 19,
3260
+ "Dh": 15,
3261
+ "jne": 3,
3602
3262
  "get_output_file": 2,
3603
3263
  "process_param": 3,
3604
3264
  "bad_params": 11,
3605
3265
  "string_param": 3,
3606
3266
  "copy_param": 2,
3267
+ "stosb": 3,
3607
3268
  "param_end": 6,
3608
3269
  "string_param_end": 2,
3609
3270
  "memory_option": 4,
3610
3271
  "passes_option": 4,
3611
3272
  "symbols_option": 3,
3273
+ "stc": 2,
3274
+ "ret": 4,
3612
3275
  "get_option_value": 3,
3613
3276
  "get_option_digit": 2,
3614
3277
  "option_value_ok": 4,
3615
3278
  "invalid_option_value": 5,
3279
+ "ja": 2,
3616
3280
  "imul": 1,
3281
+ "jo": 1,
3282
+ "dec": 4,
3283
+ "clc": 2,
3284
+ "shl": 1,
3285
+ "jae": 1,
3286
+ "dx": 1,
3617
3287
  "find_symbols_file_name": 2,
3618
3288
  "include": 15,
3619
3289
  "data": 3,
3620
3290
  "writeable": 2,
3621
3291
  "_copyright": 1,
3622
- "db": 35,
3292
+ "db": 30,
3293
+ "Ah": 9,
3623
3294
  "VERSION_STRING": 1,
3624
3295
  "align": 1,
3625
3296
  "dd": 22,
3626
- "bytes_count": 8,
3627
- "displayed_count": 4,
3628
- "character": 3,
3629
- "last_displayed": 5,
3297
+ "bytes_count": 1,
3298
+ "displayed_count": 1,
3299
+ "character": 1,
3300
+ "last_displayed": 1,
3630
3301
  "rb": 4,
3631
3302
  "options": 1,
3632
- "buffer": 14,
3303
+ "buffer": 1,
3633
3304
  "stack": 1,
3634
3305
  "import": 1,
3635
3306
  "rva": 16,
3636
3307
  "kernel_name": 2,
3637
3308
  "kernel_table": 2,
3638
- "ExitProcess": 2,
3309
+ "ExitProcess": 1,
3639
3310
  "_ExitProcess": 2,
3640
- "CreateFile": 3,
3311
+ "CreateFile": 1,
3641
3312
  "_CreateFileA": 2,
3642
- "ReadFile": 2,
3313
+ "ReadFile": 1,
3643
3314
  "_ReadFile": 2,
3644
- "WriteFile": 6,
3315
+ "WriteFile": 1,
3645
3316
  "_WriteFile": 2,
3646
- "CloseHandle": 2,
3317
+ "CloseHandle": 1,
3647
3318
  "_CloseHandle": 2,
3648
- "SetFilePointer": 2,
3319
+ "SetFilePointer": 1,
3649
3320
  "_SetFilePointer": 2,
3650
3321
  "_GetCommandLineA": 2,
3651
- "GetEnvironmentVariable": 2,
3322
+ "GetEnvironmentVariable": 1,
3652
3323
  "_GetEnvironmentVariable": 2,
3653
- "GetStdHandle": 5,
3324
+ "GetStdHandle": 1,
3654
3325
  "_GetStdHandle": 2,
3655
- "VirtualAlloc": 2,
3326
+ "VirtualAlloc": 1,
3656
3327
  "_VirtualAlloc": 2,
3657
- "VirtualFree": 2,
3328
+ "VirtualFree": 1,
3658
3329
  "_VirtualFree": 2,
3659
3330
  "_GetTickCount": 2,
3660
- "GetSystemTime": 2,
3331
+ "GetSystemTime": 1,
3661
3332
  "_GetSystemTime": 2,
3662
- "GlobalMemoryStatus": 2,
3333
+ "GlobalMemoryStatus": 1,
3663
3334
  "_GlobalMemoryStatus": 2,
3664
3335
  "dw": 14,
3665
3336
  "fixups": 1,
3666
- "discardable": 1,
3667
- "CREATE_NEW": 1,
3668
- "CREATE_ALWAYS": 2,
3669
- "OPEN_EXISTING": 2,
3670
- "OPEN_ALWAYS": 1,
3671
- "TRUNCATE_EXISTING": 1,
3672
- "FILE_SHARE_READ": 3,
3673
- "FILE_SHARE_WRITE": 1,
3674
- "FILE_SHARE_DELETE": 1,
3675
- "GENERIC_READ": 2,
3676
- "GENERIC_WRITE": 2,
3677
- "STD_INPUT_HANDLE": 1,
3678
- "FFFFFFF6h": 1,
3679
- "FFFFFFF5h": 1,
3680
- "STD_ERROR_HANDLE": 3,
3681
- "FFFFFFF4h": 1,
3682
- "MEM_COMMIT": 2,
3683
- "MEM_RESERVE": 1,
3684
- "MEM_DECOMMIT": 1,
3685
- "MEM_RELEASE": 2,
3686
- "MEM_FREE": 1,
3687
- "MEM_PRIVATE": 1,
3688
- "MEM_MAPPED": 1,
3689
- "MEM_RESET": 1,
3690
- "MEM_TOP_DOWN": 1,
3691
- "PAGE_NOACCESS": 1,
3692
- "PAGE_READONLY": 1,
3693
- "PAGE_READWRITE": 2,
3694
- "PAGE_WRITECOPY": 1,
3695
- "PAGE_EXECUTE": 1,
3696
- "PAGE_EXECUTE_READ": 1,
3697
- "PAGE_EXECUTE_READWRITE": 1,
3698
- "PAGE_EXECUTE_WRITECOPY": 1,
3699
- "PAGE_GUARD": 1,
3700
- "PAGE_NOCACHE": 1,
3701
- "allocate_memory": 4,
3702
- "jl": 13,
3703
- "large_memory": 3,
3704
- "not_enough_memory": 2,
3705
- "do_exit": 2,
3706
- "get_environment_variable": 1,
3707
- "buffer_for_variable_ok": 2,
3708
- "open": 2,
3709
- "file_error": 6,
3710
- "create": 1,
3711
- "write": 1,
3712
- "repne": 1,
3713
- "scasb": 1,
3714
- "display_loop": 2,
3715
- "display_digit": 3,
3716
- "digit_ok": 2,
3717
- "line_break_ok": 4,
3718
- "make_line_break": 2,
3719
- "A0Dh": 2,
3720
- "D0Ah": 1,
3721
- "take_last_two_characters": 2,
3722
- "block_displayed": 2,
3723
- "block_ok": 2,
3724
- "fatal_error": 1,
3725
- "error_prefix": 3,
3726
- "error_suffix": 3,
3727
- "FFh": 4,
3728
- "assembler_error": 1,
3729
- "get_error_lines": 2,
3730
- "get_next_error_line": 2,
3731
- "display_error_line": 3,
3732
- "find_definition_origin": 2,
3733
- "line_number_start": 3,
3734
- "FFFFFFFh": 2,
3735
- "line_number_ok": 2,
3736
- "line_data_start": 2,
3737
- "line_data_displayed": 2,
3738
- "get_line_data": 2,
3739
- "display_line_data": 5,
3740
- "cr_lf": 2,
3741
- "make_timestamp": 1,
3742
- "mul": 5,
3743
- "months_correction": 2,
3744
- "day_correction_ok": 4,
3745
- "day_correction": 2,
3746
- "simple_instruction_except64": 1,
3747
- "simple_instruction": 6,
3748
- "simple_instruction_only64": 1,
3749
- "simple_instruction_16bit_except64": 1,
3750
- "simple_instruction_16bit": 2,
3751
- "size_prefix": 3,
3752
- "simple_instruction_32bit_except64": 1,
3753
- "simple_instruction_32bit": 6,
3754
- "iret_instruction": 1,
3755
- "simple_instruction_64bit": 2,
3756
- "simple_extended_instruction_64bit": 1,
3757
- "simple_extended_instruction": 1,
3758
- "segment_register": 7,
3759
- "store_segment_prefix": 1,
3760
- "int_instruction": 1,
3761
- "get_size_operator": 137,
3762
- "invalid_operand_size": 131,
3763
- "jns": 1,
3764
- "int_imm_ok": 2,
3765
- "CDh": 1,
3766
- "aa_instruction": 1,
3767
- "aa_store": 2,
3768
- "basic_instruction": 1,
3769
- "basic_reg": 2,
3770
- "basic_mem": 1,
3771
- "get_address": 62,
3772
- "basic_mem_imm": 2,
3773
- "basic_mem_reg": 1,
3774
- "convert_register": 60,
3775
- "postbyte_register": 137,
3776
- "instruction_ready": 72,
3777
- "operand_autodetect": 47,
3778
- "store_instruction": 3,
3779
- "basic_mem_imm_nosize": 2,
3780
- "basic_mem_imm_8bit": 2,
3781
- "basic_mem_imm_16bit": 2,
3782
- "basic_mem_imm_32bit": 2,
3783
- "basic_mem_imm_64bit": 1,
3784
- "size_declared": 17,
3785
- "long_immediate_not_encodable": 14,
3786
- "operand_64bit": 18,
3787
- "get_simm32": 10,
3788
- "basic_mem_imm_32bit_ok": 2,
3789
- "recoverable_unknown_size": 19,
3790
- "store_instruction_with_imm8": 11,
3791
- "operand_16bit": 25,
3792
- "basic_mem_imm_16bit_store": 3,
3793
- "basic_mem_simm_8bit": 5,
3794
- "store_instruction_with_imm16": 4,
3795
- "operand_32bit": 27,
3796
- "basic_mem_imm_32bit_store": 3,
3797
- "store_instruction_with_imm32": 4,
3798
- "cdq": 11,
3799
- "get_simm32_ok": 2,
3800
- "basic_reg_reg": 2,
3801
- "basic_reg_imm": 2,
3802
- "basic_reg_mem": 1,
3803
- "basic_reg_mem_8bit": 2,
3804
- "nomem_instruction_ready": 53,
3805
- "store_nomem_instruction": 19,
3806
- "basic_reg_imm_8bit": 2,
3807
- "basic_reg_imm_16bit": 2,
3808
- "basic_reg_imm_32bit": 2,
3809
- "basic_reg_imm_64bit": 1,
3810
- "basic_reg_imm_32bit_ok": 2,
3811
- "basic_al_imm": 2,
3812
- "basic_reg_imm_16bit_store": 3,
3813
- "basic_reg_simm_8bit": 5,
3814
- "basic_ax_imm": 2,
3815
- "basic_store_imm_16bit": 2,
3816
- "store_instruction_code": 26,
3817
- "basic_reg_imm_32bit_store": 3,
3818
- "basic_eax_imm": 2,
3819
- "basic_store_imm_32bit": 2,
3820
- "ignore_unknown_size": 2,
3821
- "operand_size_not_specified": 1,
3822
- "single_operand_instruction": 1,
3823
- "F6h": 4,
3824
- "single_reg": 2,
3825
- "single_mem": 1,
3826
- "single_mem_8bit": 2,
3827
- "single_mem_nosize": 2,
3828
- "single_reg_8bit": 2,
3829
- "mov_instruction": 1,
3830
- "mov_reg": 2,
3831
- "mov_mem": 1,
3832
- "mov_mem_imm": 2,
3833
- "mov_mem_reg": 1,
3834
- "mov_mem_general_reg": 2,
3835
- "mov_mem_sreg": 2,
3836
- "mov_mem_reg_8bit": 2,
3837
- "mov_mem_ax": 2,
3838
- "mov_mem_al": 1,
3839
- "mov_mem_address16_al": 3,
3840
- "mov_mem_address32_al": 3,
3841
- "mov_mem_address64_al": 3,
3842
- "invalid_address_size": 18,
3843
- "store_segment_prefix_if_necessary": 17,
3844
- "address_32bit_prefix": 11,
3845
- "A2h": 3,
3846
- "store_mov_address32": 4,
3847
- "store_address_32bit_value": 1,
3848
- "address_16bit_prefix": 11,
3849
- "store_mov_address16": 4,
3850
- "invalid_address": 32,
3851
- "store_mov_address64": 4,
3852
- "store_address_64bit_value": 1,
3853
- "mov_mem_address16_ax": 3,
3854
- "mov_mem_address32_ax": 3,
3855
- "mov_mem_address64_ax": 3,
3856
- "A3h": 3,
3857
- "mov_mem_sreg_store": 2,
3858
- "mov_mem_imm_nosize": 2,
3859
- "mov_mem_imm_8bit": 2,
3860
- "mov_mem_imm_16bit": 2,
3861
- "mov_mem_imm_32bit": 2,
3862
- "mov_mem_imm_64bit": 1,
3863
- "mov_mem_imm_32bit_store": 2,
3864
- "C6h": 1,
3865
- "C7h": 4,
3866
- "F0h": 7,
3867
- "mov_sreg": 2,
3868
- "mov_reg_mem": 2,
3869
- "mov_reg_imm": 2,
3870
- "mov_reg_reg": 1,
3871
- "mov_reg_sreg": 2,
3872
- "mov_reg_reg_8bit": 2,
3873
- "mov_reg_creg": 2,
3874
- "mov_reg_dreg": 2,
3875
- "mov_reg_treg": 2,
3876
- "mov_reg_sreg64": 2,
3877
- "mov_reg_sreg32": 2,
3878
- "mov_reg_sreg_store": 3,
3879
- "extended_code": 73,
3880
- "mov_reg_xrx": 3,
3881
- "mov_reg_xrx_64bit": 2,
3882
- "mov_reg_xrx_store": 3,
3883
- "mov_reg_mem_8bit": 2,
3884
- "mov_ax_mem": 2,
3885
- "mov_al_mem": 2,
3886
- "mov_al_mem_address16": 3,
3887
- "mov_al_mem_address32": 3,
3888
- "mov_al_mem_address64": 3,
3889
- "A0h": 4,
3890
- "mov_ax_mem_address16": 3,
3891
- "mov_ax_mem_address32": 3,
3892
- "mov_ax_mem_address64": 3,
3893
- "A1h": 4,
3894
- "mov_reg_imm_8bit": 2,
3895
- "mov_reg_imm_16bit": 2,
3896
- "mov_reg_imm_32bit": 2,
3897
- "mov_reg_imm_64bit": 1,
3898
- "mov_reg_imm_64bit_store": 3,
3899
- "mov_reg_64bit_imm_32bit": 2,
3900
- "B8h": 3,
3901
- "store_mov_reg_imm_code": 5,
3902
- "B0h": 5,
3903
- "mov_store_imm_32bit": 2,
3904
- "mov_reg_imm_prefix_ok": 2,
3905
- "mov_creg": 2,
3906
- "mov_dreg": 2,
3907
- "mov_treg": 2,
3908
- "mov_sreg_mem": 2,
3909
- "mov_sreg_reg": 1,
3910
- "mov_sreg_reg_size_ok": 2,
3911
- "Eh": 8,
3912
- "mov_sreg_mem_size_ok": 2,
3913
- "mov_xrx": 3,
3914
- "mov_xrx_64bit": 2,
3915
- "mov_xrx_store": 4,
3916
- "test_instruction": 1,
3917
- "test_reg": 2,
3918
- "test_mem": 1,
3919
- "test_mem_imm": 2,
3920
- "test_mem_reg": 2,
3921
- "test_mem_reg_8bit": 2,
3922
- "test_mem_imm_nosize": 2,
3923
- "test_mem_imm_8bit": 2,
3924
- "test_mem_imm_16bit": 2,
3925
- "test_mem_imm_32bit": 2,
3926
- "test_mem_imm_64bit": 1,
3927
- "test_mem_imm_32bit_store": 2,
3928
- "F7h": 5,
3929
- "test_reg_mem": 3,
3930
- "test_reg_imm": 2,
3931
- "test_reg_reg": 1,
3932
- "test_reg_reg_8bit": 2,
3933
- "test_reg_imm_8bit": 2,
3934
- "test_reg_imm_16bit": 2,
3935
- "test_reg_imm_32bit": 2,
3936
- "test_reg_imm_64bit": 1,
3937
- "test_reg_imm_32bit_store": 2,
3938
- "test_al_imm": 2,
3939
- "A8h": 1,
3940
- "test_ax_imm": 2,
3941
- "A9h": 2,
3942
- "test_eax_imm": 2,
3943
- "test_reg_mem_8bit": 2,
3944
- "xchg_instruction": 1,
3945
- "xchg_reg": 2,
3946
- "xchg_mem": 1,
3947
- "xchg_reg_reg": 1,
3948
- "xchg_reg_reg_8bit": 2,
3949
- "xchg_ax_reg": 2,
3950
- "xchg_reg_reg_store": 3,
3951
- "xchg_ax_reg_ok": 3,
3952
- "xchg_ax_reg_store": 2,
3953
- "push_instruction": 1,
3954
- "push_size": 9,
3955
- "push_next": 2,
3956
- "push_reg": 2,
3957
- "push_imm": 2,
3958
- "push_mem": 1,
3959
- "push_mem_16bit": 3,
3960
- "push_mem_32bit": 3,
3961
- "push_mem_64bit": 3,
3962
- "push_mem_store": 4,
3963
- "push_done": 5,
3964
- "push_sreg": 2,
3965
- "push_reg_ok": 2,
3966
- "push_reg_16bit": 2,
3967
- "push_reg_32bit": 2,
3968
- "push_reg_64bit": 1,
3969
- "push_reg_store": 5,
3970
- "dh": 37,
3971
- "push_sreg16": 3,
3972
- "push_sreg32": 3,
3973
- "push_sreg64": 3,
3974
- "push_sreg_store": 4,
3975
- "push_sreg_386": 2,
3976
- "push_imm_size_ok": 3,
3977
- "push_imm_16bit": 2,
3978
- "push_imm_32bit": 2,
3979
- "push_imm_64bit": 2,
3980
- "push_imm_optimized_16bit": 3,
3981
- "push_imm_optimized_32bit": 3,
3982
- "push_imm_optimized_64bit": 2,
3983
- "push_imm_32bit_store": 8,
3984
- "push_imm_8bit": 3,
3985
- "push_imm_16bit_store": 4,
3986
- "pop_instruction": 1,
3987
- "pop_next": 2,
3988
- "pop_reg": 2,
3989
- "pop_mem": 1,
3990
- "pop_mem_16bit": 3,
3991
- "pop_mem_32bit": 3,
3992
- "pop_mem_64bit": 3,
3993
- "pop_mem_store": 4,
3994
- "pop_done": 3,
3995
- "pop_sreg": 2,
3996
- "pop_reg_ok": 2,
3997
- "pop_reg_16bit": 2,
3998
- "pop_reg_32bit": 2,
3999
- "pop_reg_64bit": 2,
4000
- "pop_reg_store": 5,
4001
- "pop_cs": 2,
4002
- "pop_sreg16": 3,
4003
- "pop_sreg32": 3,
4004
- "pop_sreg64": 3,
4005
- "pop_sreg_store": 4,
4006
- "pop_sreg_386": 2,
4007
- "pop_cs_store": 3,
4008
- "inc_instruction": 1,
4009
- "inc_reg": 2,
4010
- "inc_mem": 2,
4011
- "inc_mem_8bit": 2,
4012
- "inc_mem_nosize": 2,
4013
- "FEh": 2,
4014
- "inc_reg_8bit": 2,
4015
- "inc_reg_long_form": 2,
4016
- "set_instruction": 1,
4017
- "set_reg": 2,
4018
- "set_mem": 1,
4019
- "arpl_instruction": 1,
4020
- "arpl_reg": 2,
4021
- "bound_instruction": 1,
4022
- "bound_store": 2,
4023
- "enter_instruction": 1,
4024
- "enter_imm16_size_ok": 2,
4025
- "enter_imm16_ok": 2,
4026
- "js": 3,
4027
- "enter_imm8_size_ok": 2,
4028
- "enter_imm8_ok": 2,
4029
- "C8h": 2,
4030
- "ret_instruction_only64": 1,
4031
- "ret_instruction": 5,
4032
- "ret_instruction_32bit_except64": 1,
4033
- "ret_instruction_32bit": 1,
4034
- "ret_instruction_16bit": 1,
4035
- "retf_instruction": 1,
4036
- "ret_instruction_64bit": 1,
4037
- "simple_ret": 4,
4038
- "ret_imm": 3,
4039
- "ret_imm_ok": 2,
4040
- "ret_imm_store": 2,
4041
- "lea_instruction": 1,
4042
- "ls_instruction": 1,
4043
- "les_instruction": 2,
4044
- "lds_instruction": 2,
4045
- "ls_code_ok": 2,
4046
- "C4h": 1,
4047
- "ls_short_code": 2,
4048
- "C5h": 2,
4049
- "ls_16bit": 2,
4050
- "ls_32bit": 2,
4051
- "ls_64bit": 2,
4052
- "sh_instruction": 1,
4053
- "sh_reg": 2,
4054
- "sh_mem": 1,
4055
- "sh_mem_imm": 2,
4056
- "sh_mem_reg": 1,
4057
- "sh_mem_cl_8bit": 2,
4058
- "sh_mem_cl_nosize": 2,
4059
- "D3h": 2,
4060
- "D2h": 2,
4061
- "sh_mem_imm_size_ok": 2,
4062
- "sh_mem_imm_8bit": 2,
4063
- "sh_mem_imm_nosize": 2,
4064
- "sh_mem_1": 2,
4065
- "C1h": 2,
4066
- "D1h": 2,
4067
- "sh_mem_1_8bit": 2,
4068
- "C0h": 2,
4069
- "D0h": 2,
4070
- "sh_reg_imm": 2,
4071
- "sh_reg_reg": 1,
4072
- "sh_reg_cl_8bit": 2,
4073
- "sh_reg_imm_size_ok": 2,
4074
- "sh_reg_imm_8bit": 2,
4075
- "sh_reg_1": 2,
4076
- "sh_reg_1_8bit": 2,
4077
- "shd_instruction": 1,
4078
- "shd_reg": 2,
4079
- "shd_mem": 1,
4080
- "shd_mem_reg_imm": 2,
4081
- "shd_mem_reg_imm_size_ok": 2,
4082
- "shd_reg_reg_imm": 2,
4083
- "shd_reg_reg_imm_size_ok": 2,
4084
- "movx_instruction": 1,
4085
- "movx_reg": 2,
4086
- "movx_unknown_size": 2,
4087
- "movx_mem_store": 3,
4088
- "movx_reg_8bit": 2,
4089
- "movx_reg_16bit": 2,
4090
- "movsxd_instruction": 1,
4091
- "movsxd_reg": 2,
4092
- "movsxd_mem_store": 2,
4093
- "bt_instruction": 1,
4094
- "bt_reg": 2,
4095
- "bt_mem_imm": 3,
4096
- "bt_mem_reg": 2,
4097
- "bt_mem_imm_size_ok": 2,
4098
- "bt_mem_imm_nosize": 2,
4099
- "bt_mem_imm_store": 2,
4100
- "BAh": 2,
4101
- "bt_reg_imm": 3,
4102
- "bt_reg_reg": 2,
4103
- "bt_reg_imm_size_ok": 2,
4104
- "bt_reg_imm_store": 1,
4105
- "bs_instruction": 1,
4106
- "get_reg_mem": 2,
4107
- "bs_reg_reg": 2,
4108
- "get_reg_reg": 2,
4109
- "imul_instruction": 1,
4110
- "imul_reg": 2,
4111
- "imul_mem": 1,
4112
- "imul_mem_8bit": 2,
4113
- "imul_mem_nosize": 2,
4114
- "imul_reg_": 2,
4115
- "imul_reg_8bit": 2,
4116
- "imul_reg_imm": 3,
4117
- "imul_reg_noimm": 2,
4118
- "imul_reg_reg": 2,
4119
- "imul_reg_mem": 1,
4120
- "imul_reg_mem_imm": 2,
4121
- "AFh": 2,
4122
- "imul_reg_mem_imm_16bit": 2,
4123
- "imul_reg_mem_imm_32bit": 2,
4124
- "imul_reg_mem_imm_64bit": 1,
4125
- "imul_reg_mem_imm_32bit_ok": 2,
4126
- "imul_reg_mem_imm_16bit_store": 4,
4127
- "imul_reg_mem_imm_8bit_store": 3,
4128
- "imul_reg_mem_imm_32bit_store": 4,
4129
- "Bh": 11,
4130
- "imul_reg_reg_imm": 3,
4131
- "imul_reg_reg_imm_16bit": 2,
4132
- "imul_reg_reg_imm_32bit": 2,
4133
- "imul_reg_reg_imm_64bit": 1,
4134
- "imul_reg_reg_imm_32bit_ok": 2,
4135
- "imul_reg_reg_imm_16bit_store": 4,
4136
- "imul_reg_reg_imm_8bit_store": 3,
4137
- "imul_reg_reg_imm_32bit_store": 4,
4138
- "in_instruction": 1,
4139
- "in_imm": 2,
4140
- "in_reg": 2,
4141
- "in_al_dx": 2,
4142
- "in_ax_dx": 2,
4143
- "EDh": 1,
4144
- "ECh": 1,
4145
- "in_imm_size_ok": 2,
4146
- "in_al_imm": 2,
4147
- "in_ax_imm": 2,
4148
- "E5h": 1,
4149
- "E4h": 1,
4150
- "out_instruction": 1,
4151
- "out_imm": 2,
4152
- "out_dx_al": 2,
4153
- "out_dx_ax": 2,
4154
- "EFh": 1,
4155
- "EEh": 1,
4156
- "out_imm_size_ok": 2,
4157
- "out_imm_al": 2,
4158
- "out_imm_ax": 2,
4159
- "E7h": 1,
4160
- "E6h": 1,
4161
- "call_instruction": 1,
4162
- "E8h": 3,
4163
- "process_jmp": 2,
4164
- "jmp_instruction": 1,
4165
- "E9h": 1,
4166
- "EAh": 1,
4167
- "get_jump_operator": 3,
4168
- "jmp_imm": 2,
4169
- "jmp_reg": 2,
4170
- "jmp_mem": 1,
4171
- "jump_type": 14,
4172
- "jmp_mem_size_not_specified": 2,
4173
- "jmp_mem_16bit": 3,
4174
- "jmp_mem_32bit": 2,
4175
- "jmp_mem_48bit": 2,
4176
- "jmp_mem_64bit": 2,
4177
- "jmp_mem_80bit": 2,
4178
- "jmp_mem_far": 2,
4179
- "jmp_mem_near": 2,
4180
- "jmp_mem_near_32bit": 3,
4181
- "jmp_mem_far_32bit": 4,
4182
- "jmp_mem_far_store": 3,
4183
- "jmp_reg_16bit": 2,
4184
- "jmp_reg_32bit": 2,
4185
- "jmp_reg_64bit": 1,
4186
- "jmp_far": 2,
4187
- "jmp_near": 1,
4188
- "jmp_imm_16bit": 3,
4189
- "jmp_imm_32bit": 2,
4190
- "jmp_imm_64bit": 3,
4191
- "get_address_dword_value": 3,
4192
- "jmp_imm_32bit_prefix_ok": 2,
4193
- "calculate_jump_offset": 10,
4194
- "check_for_short_jump": 8,
4195
- "jmp_short": 3,
4196
- "jmp_imm_32bit_store": 2,
4197
- "jno": 2,
4198
- "jmp_imm_32bit_ok": 2,
4199
- "relative_jump_out_of_range": 6,
4200
- "get_address_qword_value": 3,
4201
- "EBh": 1,
4202
- "get_address_word_value": 3,
4203
- "jmp_imm_16bit_prefix_ok": 2,
4204
- "cwde": 3,
4205
- "forced_short": 2,
4206
- "no_short_jump": 4,
4207
- "short_jump": 4,
4208
- "jmp_short_value_type_ok": 2,
4209
- "jump_out_of_range": 3,
4210
- "jmp_far_16bit": 2,
4211
- "jmp_far_32bit": 3,
4212
- "jmp_far_segment": 2,
4213
- "conditional_jump": 1,
4214
- "conditional_jump_16bit": 3,
4215
- "conditional_jump_32bit": 2,
4216
- "conditional_jump_64bit": 3,
4217
- "conditional_jump_32bit_prefix_ok": 2,
4218
- "conditional_jump_short": 4,
4219
- "conditional_jump_32bit_store": 2,
4220
- "conditional_jump_32bit_range_ok": 2,
4221
- "conditional_jump_16bit_prefix_ok": 2,
4222
- "loop_instruction_16bit": 1,
4223
- "loop_instruction": 5,
4224
- "loop_instruction_32bit": 1,
4225
- "loop_instruction_64bit": 1,
4226
- "loop_jump_16bit": 3,
4227
- "loop_jump_32bit": 2,
4228
- "loop_jump_64bit": 3,
4229
- "loop_jump_32bit_prefix_ok": 2,
4230
- "loop_counter_size": 4,
4231
- "make_loop_jump": 3,
4232
- "loop_counter_size_ok": 2,
4233
- "loop_jump_16bit_prefix_ok": 2,
4234
- "movs_instruction": 1,
4235
- "address_sizes_do_not_agree": 2,
4236
- "movs_address_16bit": 2,
4237
- "movs_address_32bit": 2,
4238
- "movs_store": 3,
4239
- "A4h": 1,
4240
- "movs_check_size": 5,
4241
- "lods_instruction": 1,
4242
- "lods_address_16bit": 2,
4243
- "lods_address_32bit": 2,
4244
- "lods_store": 3,
4245
- "ACh": 1,
4246
- "stos_instruction": 1,
4247
- "stos_address_16bit": 2,
4248
- "stos_address_32bit": 2,
4249
- "stos_store": 3,
4250
- "cmps_instruction": 1,
4251
- "cmps_address_16bit": 2,
4252
- "cmps_address_32bit": 2,
4253
- "cmps_store": 3,
4254
- "A6h": 1,
4255
- "ins_instruction": 1,
4256
- "ins_address_16bit": 2,
4257
- "ins_address_32bit": 2,
4258
- "ins_store": 3,
4259
- "ins_check_size": 2,
4260
- "outs_instruction": 1,
4261
- "outs_address_16bit": 2,
4262
- "outs_address_32bit": 2,
4263
- "outs_store": 3,
4264
- "xlat_instruction": 1,
4265
- "xlat_address_16bit": 2,
4266
- "xlat_address_32bit": 2,
4267
- "xlat_store": 3,
4268
- "D7h": 1,
4269
- "pm_word_instruction": 1,
4270
- "pm_reg": 2,
4271
- "pm_mem": 2,
4272
- "pm_mem_store": 2,
4273
- "pm_store_word_instruction": 1,
4274
- "lgdt_instruction": 1,
4275
- "lgdt_mem_48bit": 2,
4276
- "lgdt_mem_80bit": 2,
4277
- "lgdt_mem_store": 4,
4278
- "lar_instruction": 1,
4279
- "lar_reg_reg": 2,
4280
- "lar_reg_mem": 2,
4281
- "invlpg_instruction": 1,
4282
- "swapgs_instruction": 1,
4283
- "rdtscp_instruction": 1,
4284
- "basic_486_instruction": 1,
4285
- "basic_486_reg": 2,
4286
- "basic_486_mem_reg_8bit": 2,
4287
- "basic_486_reg_reg_8bit": 2,
4288
- "bswap_instruction": 1,
4289
- "bswap_reg_code_ok": 2,
4290
- "bswap_reg64": 2,
4291
- "cmpxchgx_instruction": 1,
4292
- "cmpxchgx_size_ok": 2,
4293
- "cmpxchgx_store": 2,
4294
- "nop_instruction": 1,
4295
- "extended_nop": 4,
4296
- "extended_nop_reg": 2,
4297
- "extended_nop_store": 2,
4298
- "basic_fpu_instruction": 1,
4299
- "D8h": 2,
4300
- "basic_fpu_streg": 2,
4301
- "basic_fpu_mem": 2,
4302
- "basic_fpu_mem_32bit": 2,
4303
- "basic_fpu_mem_64bit": 2,
4304
- "DCh": 2,
4305
- "convert_fpu_register": 9,
4306
- "basic_fpu_single_streg": 3,
4307
- "basic_fpu_st0": 2,
4308
- "basic_fpu_streg_st0": 2,
4309
- "simple_fpu_instruction": 1,
4310
- "D9h": 6,
4311
- "fi_instruction": 1,
4312
- "fi_mem_16bit": 2,
4313
- "fi_mem_32bit": 2,
4314
- "DAh": 2,
4315
- "DEh": 2,
4316
- "fld_instruction": 1,
4317
- "fld_streg": 2,
4318
- "fld_mem_32bit": 2,
4319
- "fld_mem_64bit": 2,
4320
- "fld_mem_80bit": 2,
4321
- "DDh": 6,
4322
- "fld_mem_80bit_store": 3,
4323
- "DBh": 4,
4324
- "fst_streg": 2,
4325
- "fild_instruction": 1,
4326
- "fild_mem_16bit": 2,
4327
- "fild_mem_32bit": 2,
4328
- "fild_mem_64bit": 2,
4329
- "DFh": 5,
4330
- "fisttp_64bit_store": 2,
4331
- "fild_mem_64bit_store": 3,
4332
- "fbld_instruction": 1,
4333
- "fbld_mem_80bit": 3,
4334
- "faddp_instruction": 1,
4335
- "faddp_streg": 2,
4336
- "fcompp_instruction": 1,
4337
- "D9DEh": 1,
4338
- "fucompp_instruction": 1,
4339
- "E9DAh": 1,
4340
- "fxch_instruction": 1,
4341
- "fpu_single_operand": 3,
4342
- "ffreep_instruction": 1,
4343
- "ffree_instruction": 1,
4344
- "fpu_streg": 2,
4345
- "fstenv_instruction": 1,
4346
- "fldenv_instruction": 3,
4347
- "fpu_mem": 2,
4348
- "fstenv_instruction_16bit": 1,
4349
- "fldenv_instruction_16bit": 1,
4350
- "fstenv_instruction_32bit": 1,
4351
- "fldenv_instruction_32bit": 1,
4352
- "fsave_instruction_32bit": 1,
4353
- "fnsave_instruction_32bit": 1,
4354
- "fnsave_instruction": 3,
4355
- "fsave_instruction_16bit": 1,
4356
- "fnsave_instruction_16bit": 1,
4357
- "fsave_instruction": 1,
4358
- "fstcw_instruction": 1,
4359
- "fldcw_instruction": 1,
4360
- "fldcw_mem_16bit": 3,
4361
- "fstsw_instruction": 1,
4362
- "fnstsw_instruction": 1,
4363
- "fstsw_reg": 2,
4364
- "fstsw_mem_16bit": 3,
4365
- "E0DFh": 1,
4366
- "finit_instruction": 1,
4367
- "fninit_instruction": 1,
4368
- "fcmov_instruction": 1,
4369
- "fcomi_streg": 3,
4370
- "fcomi_instruction": 1,
4371
- "fcomip_instruction": 1,
4372
- "fcomi_st0_streg": 2,
4373
- "basic_mmx_instruction": 1,
4374
- "mmx_instruction": 1,
4375
- "convert_mmx_register": 18,
4376
- "make_mmx_prefix": 9,
4377
- "mmx_mmreg_mmreg": 3,
4378
- "mmx_mmreg_mem": 2,
4379
- "mmx_bit_shift_instruction": 1,
4380
- "mmx_ps_mmreg_imm8": 2,
4381
- "pmovmskb_instruction": 1,
4382
- "pmovmskb_reg_size_ok": 2,
4383
- "mmx_nomem_imm8": 7,
4384
- "mmx_imm8": 6,
4385
- "append_imm8": 2,
4386
- "pinsrw_instruction": 1,
4387
- "pinsrw_mmreg_reg": 2,
4388
- "pshufw_instruction": 1,
4389
- "mmx_size": 30,
4390
- "pshuf_instruction": 2,
4391
- "pshufd_instruction": 1,
4392
- "pshuf_mmreg_mmreg": 2,
4393
- "movd_instruction": 1,
4394
- "movd_reg": 2,
4395
- "movd_mmreg": 2,
4396
- "movd_mmreg_reg": 2,
4397
- "mmx_prefix_for_vex": 2,
4398
- "no_mmx_prefix": 2,
4399
- "movq_instruction": 1,
4400
- "movq_reg": 2,
4401
- "movq_mem_xmmreg": 2,
4402
- "D6h": 2,
4403
- "movq_mmreg": 2,
4404
- "movq_mmreg_": 2,
4405
- "F3h": 7,
4406
- "movq_mmreg_reg": 2,
4407
- "movq_mmreg_mmreg": 2,
4408
- "movq_mmreg_reg_store": 2,
4409
- "movdq_instruction": 1,
4410
- "movdq_mmreg": 2,
4411
- "convert_xmm_register": 12,
4412
- "movdq_mmreg_mmreg": 2,
4413
- "lddqu_instruction": 1,
4414
- "F2h": 6,
4415
- "movdq2q_instruction": 1,
4416
- "movq2dq_": 2,
4417
- "movq2dq_instruction": 1,
4418
- "sse_ps_instruction_imm8": 1,
4419
- "sse_ps_instruction": 1,
4420
- "sse_instruction": 11,
4421
- "sse_pd_instruction_imm8": 1,
4422
- "sse_pd_instruction": 1,
4423
- "sse_ss_instruction": 1,
4424
- "sse_sd_instruction": 1,
4425
- "cmp_pd_instruction": 1,
4426
- "cmp_ps_instruction": 1,
4427
- "C2h": 4,
4428
- "cmp_ss_instruction": 1,
4429
- "cmp_sx_instruction": 2,
4430
- "cmpsd_instruction": 1,
4431
- "A7h": 1,
4432
- "cmp_sd_instruction": 1,
4433
- "comiss_instruction": 1,
4434
- "comisd_instruction": 1,
4435
- "cvtdq2pd_instruction": 1,
4436
- "cvtps2pd_instruction": 1,
4437
- "cvtpd2dq_instruction": 1,
4438
- "movshdup_instruction": 1,
4439
- "sse_xmmreg": 2,
4440
- "sse_reg": 1,
4441
- "sse_xmmreg_xmmreg": 2,
4442
- "sse_reg_mem": 2,
4443
- "sse_mem_size_ok": 2,
4444
- "supplemental_code": 2,
4445
- "sse_cmp_mem_ok": 3,
4446
- "sse_ok": 2,
4447
- "take_additional_xmm0": 3,
4448
- "sse_xmmreg_xmmreg_ok": 4,
4449
- "sse_cmp_nomem_ok": 3,
4450
- "sse_nomem_ok": 2,
4451
- "additional_xmm0_ok": 2,
4452
- "pslldq_instruction": 1,
4453
- "movpd_instruction": 1,
4454
- "movps_instruction": 1,
4455
- "sse_mov_instruction": 3,
4456
- "movss_instruction": 1,
4457
- "sse_movs": 2,
4458
- "movsd_instruction": 1,
4459
- "A5h": 1,
4460
- "sse_mem": 2,
4461
- "sse_mem_xmmreg": 2,
4462
- "movlpd_instruction": 1,
4463
- "movlps_instruction": 1,
4464
- "movhlps_instruction": 1,
4465
- "maskmovq_instruction": 1,
4466
- "maskmov_instruction": 2,
4467
- "maskmovdqu_instruction": 1,
4468
- "movmskpd_instruction": 1,
4469
- "movmskps_instruction": 1,
4470
- "movmskps_reg_ok": 2,
4471
- "cvtpi2pd_instruction": 1,
4472
- "cvtpi2ps_instruction": 1
3337
+ "discardable": 1
4473
3338
  },
4474
3339
  "AutoHotkey": {
4475
3340
  "MsgBox": 1,
@@ -4942,6 +3807,32 @@
4942
3807
  "return_": 2,
4943
3808
  "First": 1
4944
3809
  },
3810
+ "BlitzMax": {
3811
+ "SuperStrict": 1,
3812
+ "Framework": 1,
3813
+ "Brl.StandardIO": 1,
3814
+ "Type": 2,
3815
+ "TMyType": 3,
3816
+ "Field": 1,
3817
+ "property": 1,
3818
+ "int": 3,
3819
+ "Function": 1,
3820
+ "A": 1,
3821
+ "(": 5,
3822
+ "param": 1,
3823
+ ")": 5,
3824
+ "do": 1,
3825
+ "nothing": 1,
3826
+ "End": 2,
3827
+ "Method": 1,
3828
+ "Global": 1,
3829
+ "my": 1,
3830
+ "new": 1,
3831
+ "Win32": 1,
3832
+ "my.A": 2,
3833
+ "my.B": 2,
3834
+ "Linux": 1
3835
+ },
4945
3836
  "Bluespec": {
4946
3837
  "package": 2,
4947
3838
  "TbTL": 1,
@@ -25921,6 +24812,229 @@
25921
24812
  "PersonCSVTemplate.renderToString": 1,
25922
24813
  "PersonCSVTemplate.render": 1
25923
24814
  },
24815
+ "Grace": {
24816
+ "method": 10,
24817
+ "ack": 4,
24818
+ "(": 215,
24819
+ "m": 5,
24820
+ "Number": 4,
24821
+ "n": 4,
24822
+ ")": 215,
24823
+ "-": 16,
24824
+ "{": 61,
24825
+ "print": 2,
24826
+ "if": 23,
24827
+ "<": 5,
24828
+ "then": 24,
24829
+ "+": 29,
24830
+ "}": 61,
24831
+ "elseif": 1,
24832
+ "else": 7,
24833
+ "import": 7,
24834
+ "as": 7,
24835
+ "gtk": 1,
24836
+ "io": 1,
24837
+ "collections": 1,
24838
+ "button_factory": 1,
24839
+ "dialog_factory": 1,
24840
+ "highlighter": 1,
24841
+ "aComp": 1,
24842
+ "//TODO": 1,
24843
+ "def": 56,
24844
+ "window": 2,
24845
+ "gtk.window": 3,
24846
+ "gtk.GTK_WINDOW_TOPLEVEL": 3,
24847
+ "window.title": 1,
24848
+ "window.set_default_size": 1,
24849
+ "var": 33,
24850
+ "popped": 3,
24851
+ "mBox": 2,
24852
+ "gtk.box": 6,
24853
+ "gtk.GTK_ORIENTATION_VERTICAL": 4,
24854
+ "buttonBox": 2,
24855
+ "gtk.GTK_ORIENTATION_HORIZONTAL": 5,
24856
+ "consoleButtons": 2,
24857
+ "consoleBox": 2,
24858
+ "editorBox": 2,
24859
+ "splitPane": 4,
24860
+ "gtk.paned": 1,
24861
+ "menuBox": 2,
24862
+ "runButton": 2,
24863
+ "button_factory.make": 10,
24864
+ "clearButton": 2,
24865
+ "outButton": 2,
24866
+ "errorButton": 2,
24867
+ "popButton": 2,
24868
+ "newButton": 2,
24869
+ "openButton": 2,
24870
+ "saveButton": 2,
24871
+ "saveAsButton": 2,
24872
+ "closeButton": 2,
24873
+ "tEdit": 3,
24874
+ "gtk.text_view": 5,
24875
+ "tEdit.set_size_request": 1,
24876
+ "scrolled_main": 4,
24877
+ "gtk.scrolled_window": 5,
24878
+ "scrolled_main.set_size_request": 1,
24879
+ "scrolled_main.add": 1,
24880
+ "notebook": 8,
24881
+ "gtk.notebook": 1,
24882
+ "notebook.scrollable": 1,
24883
+ "true": 8,
24884
+ "editor_map": 8,
24885
+ "collections.map.new": 4,
24886
+ "editor_map.put": 1,
24887
+ "scrolled_map": 6,
24888
+ "scrolled_map.put": 1,
24889
+ "lighter": 3,
24890
+ "highlighter.Syntax_Highlighter.new": 1,
24891
+ "tEdit.buffer.on": 1,
24892
+ "do": 14,
24893
+ "lighter.highlightLine": 1,
24894
+ "completer": 1,
24895
+ "aComp.Auto_Completer.new": 1,
24896
+ "deleteCompileFiles": 3,
24897
+ "page_num": 7,
24898
+ "cur_scrolled": 9,
24899
+ "scrolled_map.get": 8,
24900
+ "filename": 6,
24901
+ "notebook.get_tab_label_text": 3,
24902
+ "filename.substringFrom": 1,
24903
+ "to": 1,
24904
+ "filename.size": 1,
24905
+ "//Removes": 1,
24906
+ ".grace": 1,
24907
+ "extension": 1,
24908
+ "io.system": 13,
24909
+ "currentConsole": 17,
24910
+ "//": 3,
24911
+ "Which": 1,
24912
+ "console": 1,
24913
+ "is": 1,
24914
+ "being": 1,
24915
+ "shown": 1,
24916
+ "out": 9,
24917
+ "false": 9,
24918
+ "outText": 4,
24919
+ "errorText": 4,
24920
+ "runButton.on": 1,
24921
+ "clearConsoles": 4,
24922
+ "cur_page_num": 15,
24923
+ "notebook.current_page": 6,
24924
+ "cur_page": 5,
24925
+ "editor_map.get": 7,
24926
+ "cur_page_label": 6,
24927
+ "sIter": 9,
24928
+ "gtk.text_iter": 6,
24929
+ "eIter": 9,
24930
+ "cur_page.buffer.get_iter_at_offset": 4,
24931
+ "text": 4,
24932
+ "cur_page.buffer.get_text": 2,
24933
+ "file": 2,
24934
+ "io.open": 4,
24935
+ "file.write": 2,
24936
+ "file.close": 2,
24937
+ "outputFile": 1,
24938
+ "errorFile": 1,
24939
+ "outputFile.read": 1,
24940
+ "errorFile.read": 1,
24941
+ "switched": 4,
24942
+ "outText.size": 2,
24943
+ "&&": 4,
24944
+ "switch_to_output": 3,
24945
+ "errorText.size": 2,
24946
+ "switch_to_errors": 3,
24947
+ "populateConsoles": 4,
24948
+ "clearButton.on": 1,
24949
+ "outButton.on": 1,
24950
+ "errorButton.on": 1,
24951
+ "popButton.on": 1,
24952
+ "popIn": 2,
24953
+ "popOut": 2,
24954
+ "newButton.on": 1,
24955
+ "new_window_class": 1,
24956
+ "dialog_factory.new.new": 1,
24957
+ "new_window": 1,
24958
+ "new_window_class.window": 1,
24959
+ "new_window.show_all": 1,
24960
+ "openButton.on": 1,
24961
+ "open_window_class": 1,
24962
+ "dialog_factory.open.new": 1,
24963
+ "open_window": 1,
24964
+ "open_window_class.window": 1,
24965
+ "open_window.show_all": 1,
24966
+ "saveButton.on": 1,
24967
+ "saveAs_window_class": 2,
24968
+ "dialog_factory.save.new": 2,
24969
+ "saveAs_window": 2,
24970
+ "saveAs_window_class.window": 2,
24971
+ "saveAs_window.show_all": 2,
24972
+ "saveAsButton.on": 1,
24973
+ "closeButton.on": 1,
24974
+ "num_pages": 3,
24975
+ "notebook.n_pages": 2,
24976
+ "e_map": 2,
24977
+ "s_map": 2,
24978
+ "x": 21,
24979
+ "while": 3,
24980
+ "eValue": 4,
24981
+ "sValue": 4,
24982
+ "e_map.put": 2,
24983
+ "s_map.put": 2,
24984
+ "notebook.remove_page": 1,
24985
+ "notebook.show_all": 1,
24986
+ "outConsole": 4,
24987
+ "outScroll": 5,
24988
+ "errorConsole": 4,
24989
+ "errorScroll": 4,
24990
+ "errorTag": 3,
24991
+ "errorConsole.buffer.create_tag": 2,
24992
+ "createOut": 3,
24993
+ "outScroll.add": 1,
24994
+ "outConsole.set_size_request": 5,
24995
+ "outScroll.set_size_request": 5,
24996
+ "outConsole.editable": 1,
24997
+ "outConsole.buffer.set_text": 3,
24998
+ "createError": 3,
24999
+ "errorScroll.add": 1,
25000
+ "errorConsole.set_size_request": 5,
25001
+ "errorScroll.set_size_request": 5,
25002
+ "errorConsole.editable": 1,
25003
+ "errorConsole.buffer.set_text": 3,
25004
+ "consoleBox.remove": 2,
25005
+ "This": 2,
25006
+ "destroys": 2,
25007
+ "the": 2,
25008
+ "consoleBox.add": 5,
25009
+ "popped.show_all": 3,
25010
+ "window.show_all": 3,
25011
+ "errorConsole.buffer.get_iter_at_offset": 2,
25012
+ "errorConsole.buffer.apply_tag": 1,
25013
+ "popInBlock": 2,
25014
+ "consoleBox.reparent": 3,
25015
+ "popButton.label": 3,
25016
+ "cur_page.set_size_request": 3,
25017
+ "cur_scrolled.set_size_request": 3,
25018
+ "popped.visible": 3,
25019
+ "popped.connect": 1,
25020
+ "hSeparator1": 2,
25021
+ "gtk.separator": 2,
25022
+ "hSeparator2": 2,
25023
+ "menuBox.add": 4,
25024
+ "buttonBox.add": 2,
25025
+ "consoleButtons.add": 4,
25026
+ "editorBox.add": 2,
25027
+ "notebook.add": 1,
25028
+ "notebook.set_tab_label_text": 1,
25029
+ "splitPane.add1": 1,
25030
+ "splitPane.add2": 1,
25031
+ "mBox.add": 3,
25032
+ "window.add": 1,
25033
+ "exit": 2,
25034
+ "gtk.main_quit": 1,
25035
+ "window.connect": 1,
25036
+ "gtk.main": 1
25037
+ },
25924
25038
  "Grammatical Framework": {
25925
25039
  "-": 594,
25926
25040
  "(": 256,
@@ -45103,6 +44217,908 @@
45103
44217
  "Nimrod": {
45104
44218
  "echo": 1
45105
44219
  },
44220
+ "Nit": {
44221
+ "#": 196,
44222
+ "import": 18,
44223
+ "gtk": 1,
44224
+ "class": 20,
44225
+ "CalculatorContext": 7,
44226
+ "var": 157,
44227
+ "result": 16,
44228
+ "nullable": 11,
44229
+ "Float": 3,
44230
+ "null": 39,
44231
+ "last_op": 4,
44232
+ "Char": 7,
44233
+ "current": 26,
44234
+ "after_point": 12,
44235
+ "Int": 47,
44236
+ "fun": 57,
44237
+ "push_op": 2,
44238
+ "(": 448,
44239
+ "op": 11,
44240
+ ")": 448,
44241
+ "do": 83,
44242
+ "apply_last_op_if_any": 2,
44243
+ "if": 89,
44244
+ "then": 81,
44245
+ "self.result": 2,
44246
+ "else": 63,
44247
+ "store": 1,
44248
+ "for": 27,
44249
+ "next": 9,
44250
+ "end": 117,
44251
+ "prepare": 1,
44252
+ "push_digit": 1,
44253
+ "digit": 1,
44254
+ "*": 14,
44255
+ "+": 39,
44256
+ "digit.to_f": 2,
44257
+ "pow": 1,
44258
+ "after_point.to_f": 1,
44259
+ "self.after_point": 1,
44260
+ "-": 70,
44261
+ "self.current": 3,
44262
+ "switch_to_decimals": 1,
44263
+ "return": 54,
44264
+ "/": 4,
44265
+ "CalculatorGui": 2,
44266
+ "super": 10,
44267
+ "GtkCallable": 1,
44268
+ "win": 2,
44269
+ "GtkWindow": 2,
44270
+ "container": 3,
44271
+ "GtkGrid": 2,
44272
+ "lbl_disp": 3,
44273
+ "GtkLabel": 2,
44274
+ "but_eq": 3,
44275
+ "GtkButton": 2,
44276
+ "but_dot": 3,
44277
+ "context": 9,
44278
+ "new": 164,
44279
+ "redef": 30,
44280
+ "signal": 1,
44281
+ "sender": 3,
44282
+ "user_data": 5,
44283
+ "context.after_point": 1,
44284
+ "after_point.abs": 1,
44285
+ "isa": 12,
44286
+ "is": 25,
44287
+ "an": 4,
44288
+ "operation": 1,
44289
+ "c": 17,
44290
+ "but_dot.sensitive": 2,
44291
+ "false": 8,
44292
+ "context.switch_to_decimals": 4,
44293
+ "lbl_disp.text": 3,
44294
+ "true": 6,
44295
+ "context.push_op": 15,
44296
+ "s": 68,
44297
+ "context.result.to_precision_native": 1,
44298
+ "index": 7,
44299
+ "i": 20,
44300
+ "in": 39,
44301
+ "s.length.times": 1,
44302
+ "chiffre": 3,
44303
+ "s.chars": 2,
44304
+ "[": 106,
44305
+ "]": 80,
44306
+ "and": 10,
44307
+ "s.substring": 2,
44308
+ "s.length": 2,
44309
+ "a": 40,
44310
+ "number": 7,
44311
+ "n": 16,
44312
+ "context.push_digit": 25,
44313
+ "context.current.to_precision_native": 1,
44314
+ "init": 6,
44315
+ "init_gtk": 1,
44316
+ "win.add": 1,
44317
+ "container.attach": 7,
44318
+ "digits": 1,
44319
+ "but": 6,
44320
+ "GtkButton.with_label": 5,
44321
+ "n.to_s": 1,
44322
+ "but.request_size": 2,
44323
+ "but.signal_connect": 2,
44324
+ "self": 41,
44325
+ "%": 3,
44326
+ "/3": 1,
44327
+ "operators": 2,
44328
+ "r": 21,
44329
+ "op.to_s": 1,
44330
+ "but_eq.request_size": 1,
44331
+ "but_eq.signal_connect": 1,
44332
+ ".": 6,
44333
+ "but_dot.request_size": 1,
44334
+ "but_dot.signal_connect": 1,
44335
+ "#C": 1,
44336
+ "but_c": 2,
44337
+ "but_c.request_size": 1,
44338
+ "but_c.signal_connect": 1,
44339
+ "win.show_all": 1,
44340
+ "context.result.to_precision": 6,
44341
+ "assert": 24,
44342
+ "print": 135,
44343
+ "#test": 2,
44344
+ "multiple": 1,
44345
+ "decimals": 1,
44346
+ "button": 1,
44347
+ ".environ": 3,
44348
+ "app": 1,
44349
+ "run_gtk": 1,
44350
+ "module": 18,
44351
+ "callback_chimpanze": 1,
44352
+ "callback_monkey": 2,
44353
+ "Chimpanze": 2,
44354
+ "MonkeyActionCallable": 7,
44355
+ "create": 1,
44356
+ "monkey": 4,
44357
+ "Monkey": 4,
44358
+ "Invoking": 1,
44359
+ "method": 17,
44360
+ "which": 4,
44361
+ "will": 8,
44362
+ "take": 1,
44363
+ "some": 1,
44364
+ "time": 1,
44365
+ "to": 18,
44366
+ "compute": 1,
44367
+ "be": 9,
44368
+ "back": 1,
44369
+ "wokeUp": 4,
44370
+ "with": 2,
44371
+ "information.": 1,
44372
+ "Callback": 1,
44373
+ "defined": 4,
44374
+ "Interface": 1,
44375
+ "monkey.wokeUpAction": 1,
44376
+ "Inherit": 1,
44377
+ "callback": 11,
44378
+ "by": 5,
44379
+ "interface": 3,
44380
+ "Back": 2,
44381
+ "of": 31,
44382
+ "wokeUpAction": 2,
44383
+ "message": 9,
44384
+ "Object": 7,
44385
+ "m": 5,
44386
+ "m.create": 1,
44387
+ "{": 14,
44388
+ "#include": 2,
44389
+ "<stdio.h>": 1,
44390
+ "<stdlib.h>": 1,
44391
+ "typedef": 2,
44392
+ "struct": 2,
44393
+ "int": 4,
44394
+ "id": 2,
44395
+ ";": 34,
44396
+ "age": 2,
44397
+ "}": 14,
44398
+ "CMonkey": 6,
44399
+ "toCall": 6,
44400
+ "MonkeyAction": 5,
44401
+ "//": 13,
44402
+ "Method": 1,
44403
+ "reproduce": 3,
44404
+ "answer": 1,
44405
+ "Please": 1,
44406
+ "note": 1,
44407
+ "that": 2,
44408
+ "function": 2,
44409
+ "pointer": 2,
44410
+ "only": 6,
44411
+ "used": 1,
44412
+ "the": 57,
44413
+ "void": 3,
44414
+ "cbMonkey": 2,
44415
+ "*mkey": 2,
44416
+ "callbackFunc": 2,
44417
+ "CMonkey*": 1,
44418
+ "MonkeyAction*": 1,
44419
+ "*data": 3,
44420
+ "sleep": 5,
44421
+ "mkey": 2,
44422
+ "data": 6,
44423
+ "background": 1,
44424
+ "treatment": 1,
44425
+ "redirected": 1,
44426
+ "nit_monkey_callback_func": 2,
44427
+ "To": 1,
44428
+ "call": 3,
44429
+ "your": 1,
44430
+ "signature": 1,
44431
+ "must": 1,
44432
+ "written": 2,
44433
+ "like": 1,
44434
+ "this": 2,
44435
+ "<Interface>": 1,
44436
+ "Name": 1,
44437
+ "_": 1,
44438
+ "<Method>": 1,
44439
+ "...": 1,
44440
+ "MonkeyActionCallable_wokeUp": 1,
44441
+ "abstract": 2,
44442
+ "extern": 2,
44443
+ "*monkey": 1,
44444
+ "malloc": 2,
44445
+ "sizeof": 2,
44446
+ "get": 1,
44447
+ "Must": 1,
44448
+ "as": 1,
44449
+ "Nit/C": 1,
44450
+ "because": 4,
44451
+ "C": 4,
44452
+ "inside": 1,
44453
+ "MonkeyActionCallable.wokeUp": 1,
44454
+ "Allocating": 1,
44455
+ "memory": 1,
44456
+ "keep": 2,
44457
+ "reference": 2,
44458
+ "received": 1,
44459
+ "parameters": 1,
44460
+ "receiver": 1,
44461
+ "Message": 1,
44462
+ "Incrementing": 1,
44463
+ "counter": 1,
44464
+ "prevent": 1,
44465
+ "from": 8,
44466
+ "releasing": 1,
44467
+ "MonkeyActionCallable_incr_ref": 1,
44468
+ "Object_incr_ref": 1,
44469
+ "Calling": 1,
44470
+ "passing": 1,
44471
+ "Receiver": 1,
44472
+ "Function": 1,
44473
+ "object": 2,
44474
+ "Datas": 1,
44475
+ "recv": 12,
44476
+ "&": 1,
44477
+ "circular_list": 1,
44478
+ "CircularList": 6,
44479
+ "E": 15,
44480
+ "Like": 1,
44481
+ "standard": 1,
44482
+ "Array": 12,
44483
+ "or": 9,
44484
+ "LinkedList": 1,
44485
+ "Sequence.": 1,
44486
+ "Sequence": 1,
44487
+ "The": 11,
44488
+ "first": 7,
44489
+ "node": 10,
44490
+ "list": 10,
44491
+ "any": 1,
44492
+ "special": 1,
44493
+ "case": 1,
44494
+ "empty": 1,
44495
+ "handled": 1,
44496
+ "private": 5,
44497
+ "CLNode": 6,
44498
+ "iterator": 1,
44499
+ "CircularListIterator": 2,
44500
+ "self.node.item": 2,
44501
+ "push": 3,
44502
+ "e": 4,
44503
+ "new_node": 4,
44504
+ "self.node": 13,
44505
+ "not": 12,
44506
+ "one": 3,
44507
+ "so": 4,
44508
+ "attach": 1,
44509
+ "nodes": 3,
44510
+ "correctly.": 2,
44511
+ "old_last_node": 2,
44512
+ "n.prev": 4,
44513
+ "new_node.next": 1,
44514
+ "new_node.prev": 1,
44515
+ "old_last_node.next": 1,
44516
+ "pop": 2,
44517
+ "prev": 3,
44518
+ "n.item": 1,
44519
+ "detach": 1,
44520
+ "prev_prev": 2,
44521
+ "prev.prev": 1,
44522
+ "prev_prev.next": 1,
44523
+ "prev.item": 1,
44524
+ "unshift": 1,
44525
+ "Circularity": 2,
44526
+ "has": 3,
44527
+ "benefits.": 2,
44528
+ "self.node.prev": 1,
44529
+ "shift": 1,
44530
+ "self.node.next": 2,
44531
+ "self.pop": 1,
44532
+ "Move": 1,
44533
+ "at": 2,
44534
+ "last": 2,
44535
+ "position": 2,
44536
+ "second": 1,
44537
+ "etc.": 1,
44538
+ "rotate": 1,
44539
+ "n.next": 1,
44540
+ "Sort": 1,
44541
+ "using": 1,
44542
+ "Josephus": 1,
44543
+ "algorithm.": 1,
44544
+ "josephus": 1,
44545
+ "step": 2,
44546
+ "res": 1,
44547
+ "while": 4,
44548
+ "self.is_empty": 1,
44549
+ "count": 2,
44550
+ "self.rotate": 1,
44551
+ "kill": 1,
44552
+ "x": 16,
44553
+ "self.shift": 1,
44554
+ "res.add": 1,
44555
+ "res.node": 1,
44556
+ "item": 5,
44557
+ "circular": 3,
44558
+ "list.": 4,
44559
+ "Because": 2,
44560
+ "circularity": 1,
44561
+ "there": 2,
44562
+ "always": 1,
44563
+ "default": 2,
44564
+ "let": 1,
44565
+ "it": 1,
44566
+ "previous": 4,
44567
+ "Coherence": 1,
44568
+ "between": 1,
44569
+ "maintained": 1,
44570
+ "IndexedIterator": 1,
44571
+ "pointed.": 1,
44572
+ "Is": 1,
44573
+ "empty.": 4,
44574
+ "iterated.": 1,
44575
+ "is_ok": 1,
44576
+ "Empty": 1,
44577
+ "lists": 2,
44578
+ "are": 4,
44579
+ "OK.": 2,
44580
+ "Pointing": 1,
44581
+ "again": 1,
44582
+ "self.index": 3,
44583
+ "self.list.node": 1,
44584
+ "list.node": 1,
44585
+ "self.list": 1,
44586
+ "i.add_all": 1,
44587
+ "i.first": 1,
44588
+ "i.join": 3,
44589
+ "i.push": 1,
44590
+ "i.shift": 1,
44591
+ "i.pop": 1,
44592
+ "i.unshift": 1,
44593
+ "i.josephus": 1,
44594
+ "clock": 4,
44595
+ "Clock": 10,
44596
+ "total": 1,
44597
+ "minutes": 12,
44598
+ "total_minutes": 2,
44599
+ "Note": 7,
44600
+ "read": 1,
44601
+ "acces": 1,
44602
+ "public": 1,
44603
+ "write": 1,
44604
+ "access": 1,
44605
+ "private.": 1,
44606
+ "hour": 3,
44607
+ "self.total_minutes": 8,
44608
+ "set": 2,
44609
+ "hour.": 1,
44610
+ "<": 11,
44611
+ "changed": 1,
44612
+ "accordinlgy": 1,
44613
+ "self.hours": 1,
44614
+ "hours": 9,
44615
+ "updated": 1,
44616
+ "h": 7,
44617
+ "arrow": 2,
44618
+ "interval": 1,
44619
+ "hour_pos": 2,
44620
+ "replace": 1,
44621
+ "updated.": 1,
44622
+ "to_s": 3,
44623
+ "reset": 1,
44624
+ "hours*60": 1,
44625
+ "self.reset": 1,
44626
+ "o": 5,
44627
+ "type": 2,
44628
+ "test": 1,
44629
+ "required": 1,
44630
+ "Thanks": 1,
44631
+ "adaptive": 1,
44632
+ "typing": 1,
44633
+ "no": 1,
44634
+ "downcast": 1,
44635
+ "i.e.": 1,
44636
+ "code": 3,
44637
+ "safe": 4,
44638
+ "o.total_minutes": 2,
44639
+ "c.minutes": 1,
44640
+ "c.hours": 1,
44641
+ "c2": 2,
44642
+ "c2.minutes": 1,
44643
+ "clock_more": 1,
44644
+ "now": 1,
44645
+ "comparable": 1,
44646
+ "Comparable": 1,
44647
+ "Comparaison": 1,
44648
+ "make": 1,
44649
+ "sense": 1,
44650
+ "other": 2,
44651
+ "OTHER": 1,
44652
+ "Comparable.": 1,
44653
+ "All": 1,
44654
+ "methods": 2,
44655
+ "rely": 1,
44656
+ "on": 1,
44657
+ "c1": 1,
44658
+ "c3": 1,
44659
+ "c1.minutes": 1,
44660
+ "curl_http": 1,
44661
+ "curl": 11,
44662
+ "MyHttpFetcher": 2,
44663
+ "CurlCallbacks": 1,
44664
+ "Curl": 4,
44665
+ "our_body": 1,
44666
+ "String": 14,
44667
+ "self.curl": 1,
44668
+ "Release": 1,
44669
+ "destroy": 1,
44670
+ "self.curl.destroy": 1,
44671
+ "Header": 1,
44672
+ "header_callback": 1,
44673
+ "line": 3,
44674
+ "We": 1,
44675
+ "silent": 1,
44676
+ "testing": 1,
44677
+ "purposes": 2,
44678
+ "#if": 1,
44679
+ "line.has_prefix": 1,
44680
+ "Body": 1,
44681
+ "body_callback": 1,
44682
+ "self.our_body": 1,
44683
+ "Stream": 1,
44684
+ "Cf": 1,
44685
+ "No": 1,
44686
+ "registered": 1,
44687
+ "stream_callback": 1,
44688
+ "buffer": 1,
44689
+ "size": 8,
44690
+ "args.length": 3,
44691
+ "url": 2,
44692
+ "args": 9,
44693
+ "request": 1,
44694
+ "CurlHTTPRequest": 1,
44695
+ "HTTP": 3,
44696
+ "Get": 2,
44697
+ "Request": 3,
44698
+ "request.verbose": 3,
44699
+ "getResponse": 3,
44700
+ "request.execute": 2,
44701
+ "CurlResponseSuccess": 2,
44702
+ "CurlResponseFailed": 5,
44703
+ "Post": 1,
44704
+ "myHttpFetcher": 2,
44705
+ "request.delegate": 1,
44706
+ "postDatas": 5,
44707
+ "HeaderMap": 3,
44708
+ "request.datas": 1,
44709
+ "postResponse": 3,
44710
+ "file": 1,
44711
+ "headers": 3,
44712
+ "request.headers": 1,
44713
+ "downloadResponse": 3,
44714
+ "request.download_to_file": 1,
44715
+ "CurlFileResponseSuccess": 1,
44716
+ "Program": 1,
44717
+ "logic": 1,
44718
+ "curl_mail": 1,
44719
+ "mail_request": 1,
44720
+ "CurlMailRequest": 1,
44721
+ "response": 5,
44722
+ "mail_request.set_outgoing_server": 1,
44723
+ "mail_request.from": 1,
44724
+ "mail_request.to": 1,
44725
+ "mail_request.cc": 1,
44726
+ "mail_request.bcc": 1,
44727
+ "headers_body": 4,
44728
+ "mail_request.headers_body": 1,
44729
+ "mail_request.body": 1,
44730
+ "mail_request.subject": 1,
44731
+ "mail_request.verbose": 1,
44732
+ "mail_request.execute": 1,
44733
+ "CurlMailResponseSuccess": 1,
44734
+ "draw_operation": 1,
44735
+ "enum": 3,
44736
+ "n_chars": 1,
44737
+ "abs": 2,
44738
+ "log10f": 1,
44739
+ "float": 1,
44740
+ "as_operator": 1,
44741
+ "b": 10,
44742
+ "abort": 2,
44743
+ "override_dispc": 1,
44744
+ "Bool": 2,
44745
+ "lines": 7,
44746
+ "Line": 53,
44747
+ "P": 51,
44748
+ "s/2": 23,
44749
+ "y": 9,
44750
+ "lines.add": 1,
44751
+ "q4": 4,
44752
+ "s/4": 1,
44753
+ "l": 4,
44754
+ "lines.append": 1,
44755
+ "tl": 2,
44756
+ "tr": 2,
44757
+ "hack": 3,
44758
+ "support": 1,
44759
+ "bug": 1,
44760
+ "evaluation": 1,
44761
+ "software": 1,
44762
+ "draw": 1,
44763
+ "dispc": 2,
44764
+ "gap": 1,
44765
+ "w": 3,
44766
+ "length": 2,
44767
+ "*gap": 1,
44768
+ "map": 8,
44769
+ ".filled_with": 1,
44770
+ "ci": 2,
44771
+ "self.chars": 1,
44772
+ "local_dispc": 4,
44773
+ "c.override_dispc": 1,
44774
+ "c.lines": 1,
44775
+ "line.o.x": 1,
44776
+ "ci*size": 1,
44777
+ "ci*gap": 1,
44778
+ "line.o.y": 1,
44779
+ "line.len": 1,
44780
+ "map.length": 3,
44781
+ ".length": 1,
44782
+ "line.step_x": 1,
44783
+ "line.step_y": 1,
44784
+ "printn": 10,
44785
+ "step_x": 1,
44786
+ "step_y": 1,
44787
+ "len": 1,
44788
+ "op_char": 3,
44789
+ "disp_char": 6,
44790
+ "disp_size": 6,
44791
+ "disp_gap": 6,
44792
+ "gets.to_i": 4,
44793
+ "gets.chars": 2,
44794
+ "op_char.as_operator": 1,
44795
+ "len_a": 2,
44796
+ "a.n_chars": 1,
44797
+ "len_b": 2,
44798
+ "b.n_chars": 1,
44799
+ "len_res": 3,
44800
+ "result.n_chars": 1,
44801
+ "max_len": 5,
44802
+ "len_a.max": 1,
44803
+ "len_b.max": 1,
44804
+ "d": 6,
44805
+ "line_a": 3,
44806
+ "a.to_s": 1,
44807
+ "line_a.draw": 1,
44808
+ "line_b": 3,
44809
+ "op_char.to_s": 1,
44810
+ "b.to_s": 1,
44811
+ "line_b.draw": 1,
44812
+ "disp_size*max_len": 1,
44813
+ "*disp_gap": 1,
44814
+ "line_res": 3,
44815
+ "result.to_s": 1,
44816
+ "line_res.draw": 1,
44817
+ "drop_privileges": 1,
44818
+ "privileges": 1,
44819
+ "opts": 1,
44820
+ "OptionContext": 1,
44821
+ "opt_ug": 2,
44822
+ "OptionUserAndGroup.for_dropping_privileges": 1,
44823
+ "opt_ug.mandatory": 1,
44824
+ "opts.add_option": 1,
44825
+ "opts.parse": 1,
44826
+ "opts.errors.is_empty": 1,
44827
+ "opts.errors": 1,
44828
+ "opts.usage": 1,
44829
+ "exit": 3,
44830
+ "user_group": 2,
44831
+ "opt_ug.value": 1,
44832
+ "user_group.drop_privileges": 1,
44833
+ "extern_methods": 1,
44834
+ "Returns": 1,
44835
+ "th": 2,
44836
+ "fibonnaci": 1,
44837
+ "implemented": 1,
44838
+ "here": 1,
44839
+ "optimization": 1,
44840
+ "fib": 5,
44841
+ "Int_fib": 3,
44842
+ "System": 1,
44843
+ "seconds": 1,
44844
+ "Return": 4,
44845
+ "atan2l": 1,
44846
+ "libmath": 1,
44847
+ "atan_with": 2,
44848
+ "atan2": 1,
44849
+ "This": 1,
44850
+ "Nit": 2,
44851
+ "It": 1,
44852
+ "use": 1,
44853
+ "local": 1,
44854
+ "operator": 1,
44855
+ "all": 3,
44856
+ "objects": 1,
44857
+ "String.to_cstring": 2,
44858
+ "equivalent": 1,
44859
+ "char*": 1,
44860
+ "foo": 3,
44861
+ "long": 2,
44862
+ "recv_fib": 2,
44863
+ "recv_plus_fib": 2,
44864
+ "Int__plus": 1,
44865
+ "nit_string": 2,
44866
+ "Int_to_s": 1,
44867
+ "char": 1,
44868
+ "*c_string": 1,
44869
+ "String_to_cstring": 1,
44870
+ "printf": 1,
44871
+ "c_string": 1,
44872
+ "Equivalent": 1,
44873
+ "pure": 1,
44874
+ "bar": 2,
44875
+ "fibonacci": 3,
44876
+ "Calculate": 1,
44877
+ "element": 1,
44878
+ "sequence.": 1,
44879
+ ".fibonacci": 2,
44880
+ "usage": 3,
44881
+ "args.first.to_i.fibonacci": 1,
44882
+ "html": 1,
44883
+ "NitHomepage": 2,
44884
+ "HTMLPage": 1,
44885
+ "head": 5,
44886
+ "add": 35,
44887
+ ".attr": 17,
44888
+ ".text": 27,
44889
+ "body": 1,
44890
+ "open": 14,
44891
+ ".add_class": 4,
44892
+ "add_html": 7,
44893
+ "close": 14,
44894
+ "page": 1,
44895
+ "page.write_to": 1,
44896
+ "stdout": 2,
44897
+ "page.write_to_file": 1,
44898
+ "int_stack": 1,
44899
+ "IntStack": 2,
44900
+ "Null": 1,
44901
+ "means": 1,
44902
+ "stack": 3,
44903
+ "ISNode": 4,
44904
+ "Add": 2,
44905
+ "integer": 2,
44906
+ "stack.": 2,
44907
+ "val": 5,
44908
+ "self.head": 5,
44909
+ "Remove": 1,
44910
+ "pushed": 1,
44911
+ "integer.": 1,
44912
+ "followings": 2,
44913
+ "statically": 3,
44914
+ "head.val": 1,
44915
+ "head.next": 1,
44916
+ "sum": 12,
44917
+ "integers": 1,
44918
+ "sumall": 1,
44919
+ "cur": 3,
44920
+ "condition": 1,
44921
+ "cur.val": 1,
44922
+ "cur.next": 1,
44923
+ "attributes": 1,
44924
+ "have": 1,
44925
+ "value": 2,
44926
+ "free": 2,
44927
+ "constructor": 2,
44928
+ "implicitly": 2,
44929
+ "defined.": 2,
44930
+ "stored": 1,
44931
+ "node.": 1,
44932
+ "any.": 1,
44933
+ "A": 1,
44934
+ "l.push": 4,
44935
+ "l.sumall": 1,
44936
+ "loop": 2,
44937
+ "l.pop": 5,
44938
+ "break": 2,
44939
+ "following": 1,
44940
+ "gives": 2,
44941
+ "alternative": 1,
44942
+ "opengles2_hello_triangle": 1,
44943
+ "glesv2": 1,
44944
+ "egl": 1,
44945
+ "mnit_linux": 1,
44946
+ "sdl": 1,
44947
+ "x11": 1,
44948
+ "window_width": 2,
44949
+ "window_height": 2,
44950
+ "##": 6,
44951
+ "SDL": 2,
44952
+ "sdl_display": 1,
44953
+ "SDLDisplay": 1,
44954
+ "sdl_wm_info": 1,
44955
+ "SDLSystemWindowManagerInfo": 1,
44956
+ "x11_window_handle": 2,
44957
+ "sdl_wm_info.x11_window_handle": 1,
44958
+ "X11": 1,
44959
+ "x_display": 3,
44960
+ "x_open_default_display": 1,
44961
+ "EGL": 2,
44962
+ "egl_display": 6,
44963
+ "EGLDisplay": 1,
44964
+ "egl_display.is_valid": 2,
44965
+ "egl_display.initialize": 1,
44966
+ "egl_display.error": 3,
44967
+ "config_chooser": 1,
44968
+ "EGLConfigChooser": 1,
44969
+ "#config_chooser.surface_type_egl": 1,
44970
+ "config_chooser.blue_size": 1,
44971
+ "config_chooser.green_size": 1,
44972
+ "config_chooser.red_size": 1,
44973
+ "#config_chooser.alpha_size": 1,
44974
+ "#config_chooser.depth_size": 1,
44975
+ "#config_chooser.stencil_size": 1,
44976
+ "#config_chooser.sample_buffers": 1,
44977
+ "config_chooser.close": 1,
44978
+ "configs": 3,
44979
+ "config_chooser.choose": 1,
44980
+ "configs.is_empty": 1,
44981
+ "config": 4,
44982
+ "attribs": 1,
44983
+ "config.attribs": 2,
44984
+ "configs.first": 1,
44985
+ "format": 1,
44986
+ ".native_visual_id": 1,
44987
+ "surface": 5,
44988
+ "egl_display.create_window_surface": 1,
44989
+ "surface.is_ok": 1,
44990
+ "egl_display.create_context": 1,
44991
+ "context.is_ok": 1,
44992
+ "make_current_res": 2,
44993
+ "egl_display.make_current": 2,
44994
+ "width": 2,
44995
+ "surface.attribs": 2,
44996
+ ".width": 1,
44997
+ "height": 2,
44998
+ ".height": 1,
44999
+ "egl_bind_opengl_es_api": 1,
45000
+ "GLESv2": 1,
45001
+ "assert_no_gl_error": 6,
45002
+ "gl_shader_compiler": 1,
45003
+ "gl_error.to_s": 1,
45004
+ "program": 1,
45005
+ "GLProgram": 1,
45006
+ "program.is_ok": 1,
45007
+ "program.info_log": 1,
45008
+ "vertex_shader": 2,
45009
+ "GLVertexShader": 1,
45010
+ "vertex_shader.is_ok": 1,
45011
+ "vertex_shader.source": 1,
45012
+ "vertex_shader.compile": 1,
45013
+ "vertex_shader.is_compiled": 1,
45014
+ "fragment_shader": 2,
45015
+ "GLFragmentShader": 1,
45016
+ "fragment_shader.is_ok": 1,
45017
+ "fragment_shader.source": 1,
45018
+ "fragment_shader.compile": 1,
45019
+ "fragment_shader.is_compiled": 1,
45020
+ "program.attach_shader": 2,
45021
+ "program.bind_attrib_location": 1,
45022
+ "program.link": 1,
45023
+ "program.is_linked": 1,
45024
+ "vertices": 2,
45025
+ "vertex_array": 1,
45026
+ "VertexArray": 1,
45027
+ "vertex_array.attrib_pointer": 1,
45028
+ "gl_clear_color": 1,
45029
+ "gl_viewport": 1,
45030
+ "gl_clear_color_buffer": 1,
45031
+ "program.use": 1,
45032
+ "vertex_array.enable": 1,
45033
+ "vertex_array.draw_arrays_triangles": 1,
45034
+ "egl_display.swap_buffers": 1,
45035
+ "program.delete": 1,
45036
+ "vertex_shader.delete": 1,
45037
+ "fragment_shader.delete": 1,
45038
+ "EGLSurface.none": 2,
45039
+ "EGLContext.none": 1,
45040
+ "egl_display.destroy_context": 1,
45041
+ "egl_display.destroy_surface": 1,
45042
+ "sdl_display.destroy": 1,
45043
+ "print_arguments": 1,
45044
+ "procedural_array": 1,
45045
+ "array_sum": 2,
45046
+ "array_sum_alt": 2,
45047
+ "a.length": 1,
45048
+ "socket_client": 1,
45049
+ "socket": 6,
45050
+ "Socket.client": 1,
45051
+ ".to_i": 2,
45052
+ "s.connected": 1,
45053
+ "s.write": 1,
45054
+ "s.close": 1,
45055
+ "socket_server": 1,
45056
+ "args.is_empty": 1,
45057
+ "Socket.server": 1,
45058
+ "clients": 2,
45059
+ "Socket": 1,
45060
+ "max": 2,
45061
+ "fs": 1,
45062
+ "SocketObserver": 1,
45063
+ "fs.readset.set": 2,
45064
+ "fs.select": 1,
45065
+ "fs.readset.is_set": 1,
45066
+ "ns": 1,
45067
+ "socket.accept": 1,
45068
+ "ns.write": 1,
45069
+ "ns.close": 1,
45070
+ "template": 1,
45071
+ "###": 2,
45072
+ "Here": 2,
45073
+ "definition": 1,
45074
+ "specific": 1,
45075
+ "templates": 2,
45076
+ "TmplComposers": 2,
45077
+ "Template": 3,
45078
+ "Short": 2,
45079
+ "composers": 4,
45080
+ "TmplComposer": 3,
45081
+ "Detailled": 1,
45082
+ "composer_details": 2,
45083
+ "TmplComposerDetail": 3,
45084
+ "composer": 1,
45085
+ "both": 1,
45086
+ "add_composer": 1,
45087
+ "firstname": 5,
45088
+ "lastname": 6,
45089
+ "birth": 5,
45090
+ "death": 5,
45091
+ "composers.add": 1,
45092
+ "composer_details.add": 1,
45093
+ "rendering": 3,
45094
+ "add_all": 2,
45095
+ "name": 4,
45096
+ "self.name": 1,
45097
+ "self.firstname": 1,
45098
+ "self.lastname": 1,
45099
+ "self.birth": 1,
45100
+ "self.death": 1,
45101
+ "simple": 1,
45102
+ "f": 1,
45103
+ "f.add_composer": 3,
45104
+ "f.write_to": 1,
45105
+ "websocket_server": 1,
45106
+ "websocket": 1,
45107
+ "sock": 1,
45108
+ "WebSocket": 1,
45109
+ "msg": 8,
45110
+ "sock.listener.eof": 2,
45111
+ "sys.errno.strerror": 1,
45112
+ "sock.accept": 2,
45113
+ "sock.connected": 1,
45114
+ "sys.stdin.poll_in": 1,
45115
+ "gets": 1,
45116
+ "sock.close": 1,
45117
+ "sock.disconnect_client": 1,
45118
+ "sock.write": 1,
45119
+ "sock.can_read": 1,
45120
+ "sock.read_line": 1
45121
+ },
45106
45122
  "Nix": {
45107
45123
  "{": 8,
45108
45124
  "stdenv": 1,
@@ -69630,10 +69646,11 @@
69630
69646
  "Arduino": 20,
69631
69647
  "AsciiDoc": 103,
69632
69648
  "AspectJ": 324,
69633
- "Assembly": 21750,
69649
+ "Assembly": 743,
69634
69650
  "AutoHotkey": 3,
69635
69651
  "Awk": 544,
69636
69652
  "BlitzBasic": 2065,
69653
+ "BlitzMax": 40,
69637
69654
  "Bluespec": 1298,
69638
69655
  "Brightscript": 579,
69639
69656
  "C": 59053,
@@ -69670,6 +69687,7 @@
69670
69687
  "Game Maker Language": 13310,
69671
69688
  "Gnuplot": 1023,
69672
69689
  "Gosu": 410,
69690
+ "Grace": 1381,
69673
69691
  "Grammatical Framework": 10607,
69674
69692
  "Groovy": 93,
69675
69693
  "Groovy Server Pages": 91,
@@ -69724,6 +69742,7 @@
69724
69742
  "NetLogo": 243,
69725
69743
  "Nginx": 179,
69726
69744
  "Nimrod": 1,
69745
+ "Nit": 5282,
69727
69746
  "Nix": 188,
69728
69747
  "Nu": 116,
69729
69748
  "OCaml": 382,
@@ -69827,10 +69846,11 @@
69827
69846
  "Arduino": 1,
69828
69847
  "AsciiDoc": 3,
69829
69848
  "AspectJ": 2,
69830
- "Assembly": 4,
69849
+ "Assembly": 1,
69831
69850
  "AutoHotkey": 1,
69832
69851
  "Awk": 1,
69833
69852
  "BlitzBasic": 3,
69853
+ "BlitzMax": 1,
69834
69854
  "Bluespec": 2,
69835
69855
  "Brightscript": 1,
69836
69856
  "C": 29,
@@ -69867,6 +69887,7 @@
69867
69887
  "Game Maker Language": 13,
69868
69888
  "Gnuplot": 6,
69869
69889
  "Gosu": 4,
69890
+ "Grace": 2,
69870
69891
  "Grammatical Framework": 41,
69871
69892
  "Groovy": 5,
69872
69893
  "Groovy Server Pages": 4,
@@ -69921,6 +69942,7 @@
69921
69942
  "NetLogo": 1,
69922
69943
  "Nginx": 1,
69923
69944
  "Nimrod": 1,
69945
+ "Nit": 22,
69924
69946
  "Nix": 1,
69925
69947
  "Nu": 2,
69926
69948
  "OCaml": 2,
@@ -70013,5 +70035,5 @@
70013
70035
  "fish": 3,
70014
70036
  "wisp": 1
70015
70037
  },
70016
- "md5": "bb637c5d1f457edff3f8c2676d10807a"
70038
+ "md5": "cedc5d3fde7e7b87467bdf820d674b95"
70017
70039
  }