View | Details | Raw Unified | Return to bug 262581 | Differences between
and this patch

Collapse All | Expand All

(-)b/lang/crystal/Makefile (-2 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=		crystal
1
PORTNAME=		crystal
2
DISTVERSION=		1.2.2
2
DISTVERSION=		1.4.0
3
PORTREVISION=		1
4
CATEGORIES=		lang
3
CATEGORIES=		lang
5
MASTER_SITES=		https://dl.unrelenting.technology/crystal/:bootstrap
4
MASTER_SITES=		https://dl.unrelenting.technology/crystal/:bootstrap
6
DISTFILES=		${BOOTSTRAP_PATH}:bootstrap
5
DISTFILES=		${BOOTSTRAP_PATH}:bootstrap
(-)b/lang/crystal/distinfo (-5 / +3 lines)
Lines 1-7 Link Here
1
TIMESTAMP = 1640645935
1
TIMESTAMP = 1649536911
2
SHA256 (crystal/crystal-1.1.1-freebsd12-amd64-llvm10) = bceb45f9d886cfbfac866761dcb954788156908d3a54e35f58c9e3f716cf91ed
2
SHA256 (crystal/crystal-1.1.1-freebsd12-amd64-llvm10) = bceb45f9d886cfbfac866761dcb954788156908d3a54e35f58c9e3f716cf91ed
3
SIZE (crystal/crystal-1.1.1-freebsd12-amd64-llvm10) = 11997032
3
SIZE (crystal/crystal-1.1.1-freebsd12-amd64-llvm10) = 11997032
4
SHA256 (crystal/crystal-1.1.1-freebsd12-aarch64-llvm10) = 51433c9cff796da1423e2a6d77c87891cd7ba4cee37ef25322b2e801aba2b53b
4
SHA256 (crystal/crystal-lang-crystal-1.4.0_GH0.tar.gz) = 543443a253fe338d0dec4f4158d728806a8db65bdd4bf3dbe3d0afcd1361b495
5
SIZE (crystal/crystal-1.1.1-freebsd12-aarch64-llvm10) = 11093864
5
SIZE (crystal/crystal-lang-crystal-1.4.0_GH0.tar.gz) = 2879181
6
SHA256 (crystal/crystal-lang-crystal-1.2.2_GH0.tar.gz) = 6d963a71ef5f6c73faa272a0f81b50e9ddbf814b1ec07e557ce5c95f84d6077e
7
SIZE (crystal/crystal-lang-crystal-1.2.2_GH0.tar.gz) = 2621720
(-)b/lang/crystal/files/extra-patch-src_openssl_lib__crypto.cr (-10 / +29 lines)
Lines 1-12 Link Here
1
--- src/openssl/lib_crypto.cr.orig	2021-08-08 15:06:11 UTC
1
--- src/openssl/lib_crypto.cr.orig	2022-04-09 14:20:55.000000000 -0700
2
+++ src/openssl/lib_crypto.cr
2
+++ src/openssl/lib_crypto.cr	2022-04-09 14:15:51.000000000 -0700
3
@@ -1,21 +1,11 @@
3
@@ -1,31 +1,7 @@
4
 {% begin %}
4
 {% begin %}
5
   lib LibCrypto
5
   lib LibCrypto
6
-    {% from_libressl = (`hash pkg-config 2> /dev/null || printf %s false` != "false") &&
6
-    {% if flag?(:win32) %}
7
-                       (`test -f $(pkg-config --silence-errors --variable=includedir libcrypto)/openssl/opensslv.h || printf %s false` != "false") &&
7
-      {% from_libressl = false %}
8
-                       (`printf "#include <openssl/opensslv.h>\nLIBRESSL_VERSION_NUMBER" | ${CC:-cc} $(pkg-config --cflags --silence-errors libcrypto || true) -E -`.chomp.split('\n').last != "LIBRESSL_VERSION_NUMBER") %}
8
-      {% ssl_version = nil %}
9
-    {% ssl_version = `hash pkg-config 2> /dev/null && pkg-config --silence-errors --modversion libcrypto || printf %s 0.0.0`.split.last.gsub(/[^0-9.]/, "") %}
9
-      {% for dir in Crystal::LIBRARY_PATH.split(';') %}
10
-        {% unless ssl_version %}
11
-          {% config_path = "#{dir.id}\\openssl_VERSION" %}
12
-          {% if config_version = read_file?(config_path) %}
13
-            {% ssl_version = config_version.chomp %}
14
-          {% end %}
15
-        {% end %}
16
-      {% end %}
17
-      {% ssl_version ||= "0.0.0" %}
18
-    {% else %}
19
-      {% from_libressl = (`hash pkg-config 2> /dev/null || printf %s false` != "false") &&
20
-                         (`test -f $(pkg-config --silence-errors --variable=includedir libcrypto)/openssl/opensslv.h || printf %s false` != "false") &&
21
-                         (`printf "#include <openssl/opensslv.h>\nLIBRESSL_VERSION_NUMBER" | ${CC:-cc} $(pkg-config --cflags --silence-errors libcrypto || true) -E -`.chomp.split('\n').last != "LIBRESSL_VERSION_NUMBER") %}
22
-      {% ssl_version = `hash pkg-config 2> /dev/null && pkg-config --silence-errors --modversion libcrypto || printf %s 0.0.0`.split.last.gsub(/[^0-9.]/, "") %}
23
-    {% end %}
10
-
24
-
11
-    {% if from_libressl %}
25
-    {% if from_libressl %}
12
-      LIBRESSL_VERSION = {{ ssl_version }}
26
-      LIBRESSL_VERSION = {{ ssl_version }}
Lines 20-27 Link Here
20
   end
34
   end
21
 {% end %}
35
 {% end %}
22
 
36
 
23
-@[Link(ldflags: "`command -v pkg-config > /dev/null && pkg-config --libs --silence-errors libcrypto || printf %s '-lcrypto'`")]
37
@@ -34,7 +10,7 @@
24
+@[Link(ldflags: "-LCRYSTAL_SSL_LDFLAGS -lcrypto")]
38
   @[Link("crypt32")] # CertOpenStore, ...
39
   @[Link("user32")]  # GetProcessWindowStation, GetUserObjectInformationW, _MessageBoxW
40
 {% else %}
41
-  @[Link(ldflags: "`command -v pkg-config > /dev/null && pkg-config --libs --silence-errors libcrypto || printf %s '-lcrypto'`")]
42
+  @[Link(ldflags: "-LCRYSTAL_SSL_LDFLAGS -lcrypto")]
43
 {% end %}
25
 lib LibCrypto
44
 lib LibCrypto
26
   alias Char = LibC::Char
45
   alias Char = LibC::Char
27
   alias Int = LibC::Int
46
(-)b/lang/crystal/files/extra-patch-src_openssl_lib__ssl.cr (-7 / +21 lines)
Lines 1-13 Link Here
1
--- src/openssl/lib_ssl.cr.orig	2021-08-08 15:06:09 UTC
1
--- src/openssl/lib_ssl.cr.orig	2022-04-09 14:24:40.000000000 -0700
2
+++ src/openssl/lib_ssl.cr
2
+++ src/openssl/lib_ssl.cr	2022-04-09 14:24:07.000000000 -0700
3
@@ -6,22 +6,12 @@ require "./lib_crypto"
3
@@ -6,32 +6,8 @@
4
 
4
 
5
 {% begin %}
5
 {% begin %}
6
   lib LibSSL
6
   lib LibSSL
7
-    {% from_libressl = (`hash pkg-config 2> /dev/null || printf %s false` != "false") &&
7
-    {% if flag?(:win32) %}
8
-                       (`test -f $(pkg-config --silence-errors --variable=includedir libssl)/openssl/opensslv.h || printf %s false` != "false") &&
8
-      {% from_libressl = false %}
9
-                       (`printf "#include <openssl/opensslv.h>\nLIBRESSL_VERSION_NUMBER" | ${CC:-cc} $(pkg-config --cflags --silence-errors libssl || true) -E -`.chomp.split('\n').last != "LIBRESSL_VERSION_NUMBER") %}
9
-      {% ssl_version = nil %}
10
-    {% ssl_version = `hash pkg-config 2> /dev/null && pkg-config --silence-errors --modversion libssl || printf %s 0.0.0`.split.last.gsub(/[^0-9.]/, "") %}
10
-      {% for dir in Crystal::LIBRARY_PATH.split(';') %}
11
-        {% unless ssl_version %}
12
-          {% config_path = "#{dir.id}\\openssl_VERSION" %}
13
-          {% if config_version = read_file?(config_path) %}
14
-            {% ssl_version = config_version.chomp %}
15
-          {% end %}
16
-        {% end %}
17
-      {% end %}
18
-      {% ssl_version ||= "0.0.0" %}
19
-    {% else %}
20
-      {% from_libressl = (`hash pkg-config 2> /dev/null || printf %s false` != "false") &&
21
-                         (`test -f $(pkg-config --silence-errors --variable=includedir libssl)/openssl/opensslv.h || printf %s false` != "false") &&
22
-                         (`printf "#include <openssl/opensslv.h>\nLIBRESSL_VERSION_NUMBER" | ${CC:-cc} $(pkg-config --cflags --silence-errors libssl || true) -E -`.chomp.split('\n').last != "LIBRESSL_VERSION_NUMBER") %}
23
-      {% ssl_version = `hash pkg-config 2> /dev/null && pkg-config --silence-errors --modversion libssl || printf %s 0.0.0`.split.last.gsub(/[^0-9.]/, "") %}
24
-    {% end %}
11
-
25
-
12
-    {% if from_libressl %}
26
-    {% if from_libressl %}
13
-      LIBRESSL_VERSION = {{ ssl_version }}
27
-      LIBRESSL_VERSION = {{ ssl_version }}
(-)b/lang/crystal/pkg-plist (-10 / +126 lines)
Lines 62-74 lib/crystal/compiler/crystal/command/env.cr Link Here
62
lib/crystal/compiler/crystal/command/eval.cr
62
lib/crystal/compiler/crystal/command/eval.cr
63
lib/crystal/compiler/crystal/command/format.cr
63
lib/crystal/compiler/crystal/command/format.cr
64
lib/crystal/compiler/crystal/command/playground.cr
64
lib/crystal/compiler/crystal/command/playground.cr
65
lib/crystal/compiler/crystal/command/repl.cr
65
lib/crystal/compiler/crystal/command/spec.cr
66
lib/crystal/compiler/crystal/command/spec.cr
66
lib/crystal/compiler/crystal/compiler.cr
67
lib/crystal/compiler/crystal/compiler.cr
67
lib/crystal/compiler/crystal/config.cr
68
lib/crystal/compiler/crystal/config.cr
68
lib/crystal/compiler/crystal/crystal_path.cr
69
lib/crystal/compiler/crystal/crystal_path.cr
69
lib/crystal/compiler/crystal/error.cr
70
lib/crystal/compiler/crystal/error.cr
70
lib/crystal/compiler/crystal/exception.cr
71
lib/crystal/compiler/crystal/exception.cr
72
lib/crystal/compiler/crystal/ffi/call_interface.cr
73
lib/crystal/compiler/crystal/ffi/closure.cr
74
lib/crystal/compiler/crystal/ffi/ffi.cr
75
lib/crystal/compiler/crystal/ffi/lib_ffi.cr
76
lib/crystal/compiler/crystal/ffi/type.cr
71
lib/crystal/compiler/crystal/formatter.cr
77
lib/crystal/compiler/crystal/formatter.cr
78
lib/crystal/compiler/crystal/interpreter.cr
79
lib/crystal/compiler/crystal/interpreter/c.cr
80
lib/crystal/compiler/crystal/interpreter/cast.cr
81
lib/crystal/compiler/crystal/interpreter/class_vars.cr
82
lib/crystal/compiler/crystal/interpreter/closure.cr
83
lib/crystal/compiler/crystal/interpreter/compiled_block.cr
84
lib/crystal/compiler/crystal/interpreter/compiled_def.cr
85
lib/crystal/compiler/crystal/interpreter/compiled_instructions.cr
86
lib/crystal/compiler/crystal/interpreter/compiler.cr
87
lib/crystal/compiler/crystal/interpreter/constants.cr
88
lib/crystal/compiler/crystal/interpreter/context.cr
89
lib/crystal/compiler/crystal/interpreter/debug.cr
90
lib/crystal/compiler/crystal/interpreter/disassembler.cr
91
lib/crystal/compiler/crystal/interpreter/escaping_exception.cr
92
lib/crystal/compiler/crystal/interpreter/ffi_closure_context.cr
93
lib/crystal/compiler/crystal/interpreter/instruction.cr
94
lib/crystal/compiler/crystal/interpreter/instructions.cr
95
lib/crystal/compiler/crystal/interpreter/interpreter.cr
96
lib/crystal/compiler/crystal/interpreter/lib_function.cr
97
lib/crystal/compiler/crystal/interpreter/local_vars.cr
98
lib/crystal/compiler/crystal/interpreter/local_vars_gatherer.cr
99
lib/crystal/compiler/crystal/interpreter/multidispatch.cr
100
lib/crystal/compiler/crystal/interpreter/op_code.cr
101
lib/crystal/compiler/crystal/interpreter/primitives.cr
102
lib/crystal/compiler/crystal/interpreter/repl.cr
103
lib/crystal/compiler/crystal/interpreter/to_bool.cr
104
lib/crystal/compiler/crystal/interpreter/value.cr
105
lib/crystal/compiler/crystal/loader.cr
106
lib/crystal/compiler/crystal/loader/unix.cr
72
lib/crystal/compiler/crystal/macros.cr
107
lib/crystal/compiler/crystal/macros.cr
73
lib/crystal/compiler/crystal/macros/interpreter.cr
108
lib/crystal/compiler/crystal/macros/interpreter.cr
74
lib/crystal/compiler/crystal/macros/macros.cr
109
lib/crystal/compiler/crystal/macros/macros.cr
Lines 129-137 lib/crystal/compiler/crystal/syntax/transformer.cr Link Here
129
lib/crystal/compiler/crystal/syntax/virtual_file.cr
164
lib/crystal/compiler/crystal/syntax/virtual_file.cr
130
lib/crystal/compiler/crystal/syntax/visitor.cr
165
lib/crystal/compiler/crystal/syntax/visitor.cr
131
lib/crystal/compiler/crystal/tools/context.cr
166
lib/crystal/compiler/crystal/tools/context.cr
167
lib/crystal/compiler/crystal/tools/doc.cr
132
lib/crystal/compiler/crystal/tools/doc/constant.cr
168
lib/crystal/compiler/crystal/tools/doc/constant.cr
133
lib/crystal/compiler/crystal/tools/doc/generator.cr
169
lib/crystal/compiler/crystal/tools/doc/generator.cr
134
lib/crystal/compiler/crystal/tools/doc/highlighter.cr
170
lib/crystal/compiler/crystal/tools/doc/html/404.html
135
lib/crystal/compiler/crystal/tools/doc/html/_head.html
171
lib/crystal/compiler/crystal/tools/doc/html/_head.html
136
lib/crystal/compiler/crystal/tools/doc/html/_list_items.html
172
lib/crystal/compiler/crystal/tools/doc/html/_list_items.html
137
lib/crystal/compiler/crystal/tools/doc/html/_method_detail.html
173
lib/crystal/compiler/crystal/tools/doc/html/_method_detail.html
Lines 171-182 lib/crystal/compiler/crystal/tools/init/template/license.ecr Link Here
171
lib/crystal/compiler/crystal/tools/init/template/readme.md.ecr
207
lib/crystal/compiler/crystal/tools/init/template/readme.md.ecr
172
lib/crystal/compiler/crystal/tools/init/template/shard.yml.ecr
208
lib/crystal/compiler/crystal/tools/init/template/shard.yml.ecr
173
lib/crystal/compiler/crystal/tools/init/template/spec_helper.cr.ecr
209
lib/crystal/compiler/crystal/tools/init/template/spec_helper.cr.ecr
210
lib/crystal/compiler/crystal/tools/playground.cr
174
lib/crystal/compiler/crystal/tools/playground/agent.cr
211
lib/crystal/compiler/crystal/tools/playground/agent.cr
175
lib/crystal/compiler/crystal/tools/playground/agent_instrumentor_transformer.cr
212
lib/crystal/compiler/crystal/tools/playground/agent_instrumentor_transformer.cr
176
lib/crystal/compiler/crystal/tools/playground/public/application.css
213
lib/crystal/compiler/crystal/tools/playground/public/application.css
177
lib/crystal/compiler/crystal/tools/playground/public/application.js
214
lib/crystal/compiler/crystal/tools/playground/public/application.js
178
lib/crystal/compiler/crystal/tools/playground/public/favicon.ico
215
lib/crystal/compiler/crystal/tools/playground/public/favicon.ico
179
lib/crystal/compiler/crystal/tools/playground/public/icon.png
216
lib/crystal/compiler/crystal/tools/playground/public/icon.svg
180
lib/crystal/compiler/crystal/tools/playground/public/session.js
217
lib/crystal/compiler/crystal/tools/playground/public/session.js
181
lib/crystal/compiler/crystal/tools/playground/public/settings.js
218
lib/crystal/compiler/crystal/tools/playground/public/settings.js
182
lib/crystal/compiler/crystal/tools/playground/public/vendor/ansi_up-1.3.0/ansi_up.js
219
lib/crystal/compiler/crystal/tools/playground/public/vendor/ansi_up-1.3.0/ansi_up.js
Lines 206-211 lib/crystal/compiler/crystal/tools/table_print.cr Link Here
206
lib/crystal/compiler/crystal/tools/typed_def_processor.cr
243
lib/crystal/compiler/crystal/tools/typed_def_processor.cr
207
lib/crystal/compiler/crystal/types.cr
244
lib/crystal/compiler/crystal/types.cr
208
lib/crystal/compiler/crystal/util.cr
245
lib/crystal/compiler/crystal/util.cr
246
lib/crystal/compiler/requires.cr
209
lib/crystal/complex.cr
247
lib/crystal/complex.cr
210
lib/crystal/compress/deflate/deflate.cr
248
lib/crystal/compress/deflate/deflate.cr
211
lib/crystal/compress/deflate/reader.cr
249
lib/crystal/compress/deflate/reader.cr
Lines 235-241 lib/crystal/crypto/subtle.cr Link Here
235
lib/crystal/crystal/at_exit_handlers.cr
273
lib/crystal/crystal/at_exit_handlers.cr
236
lib/crystal/crystal/compiler_rt.cr
274
lib/crystal/crystal/compiler_rt.cr
237
lib/crystal/crystal/compiler_rt/divmod128.cr
275
lib/crystal/crystal/compiler_rt/divmod128.cr
276
lib/crystal/crystal/compiler_rt/fixint.cr
277
lib/crystal/crystal/compiler_rt/float.cr
238
lib/crystal/crystal/compiler_rt/mul.cr
278
lib/crystal/crystal/compiler_rt/mul.cr
279
lib/crystal/crystal/compiler_rt/multi3.cr
239
lib/crystal/crystal/datum.cr
280
lib/crystal/crystal/datum.cr
240
lib/crystal/crystal/digest/md5.cr
281
lib/crystal/crystal/digest/md5.cr
241
lib/crystal/crystal/digest/sha1.cr
282
lib/crystal/crystal/digest/sha1.cr
Lines 248-253 lib/crystal/crystal/elf.cr Link Here
248
lib/crystal/crystal/fiber_channel.cr
289
lib/crystal/crystal/fiber_channel.cr
249
lib/crystal/crystal/hasher.cr
290
lib/crystal/crystal/hasher.cr
250
lib/crystal/crystal/iconv.cr
291
lib/crystal/crystal/iconv.cr
292
lib/crystal/crystal/interpreter.cr
293
lib/crystal/crystal/lib_iconv.cr
251
lib/crystal/crystal/mach_o.cr
294
lib/crystal/crystal/mach_o.cr
252
lib/crystal/crystal/main.cr
295
lib/crystal/crystal/main.cr
253
lib/crystal/crystal/once.cr
296
lib/crystal/crystal/once.cr
Lines 255-260 lib/crystal/crystal/pointer_linked_list.cr Link Here
255
lib/crystal/crystal/rw_lock.cr
298
lib/crystal/crystal/rw_lock.cr
256
lib/crystal/crystal/scheduler.cr
299
lib/crystal/crystal/scheduler.cr
257
lib/crystal/crystal/spin_lock.cr
300
lib/crystal/crystal/spin_lock.cr
301
lib/crystal/crystal/syntax_highlighter.cr
302
lib/crystal/crystal/syntax_highlighter/colorize.cr
303
lib/crystal/crystal/syntax_highlighter/html.cr
258
lib/crystal/crystal/system.cr
304
lib/crystal/crystal/system.cr
259
lib/crystal/crystal/system/dir.cr
305
lib/crystal/crystal/system/dir.cr
260
lib/crystal/crystal/system/env.cr
306
lib/crystal/crystal/system/env.cr
Lines 265-270 lib/crystal/crystal/system/file_descriptor.cr Link Here
265
lib/crystal/crystal/system/file_info.cr
311
lib/crystal/crystal/system/file_info.cr
266
lib/crystal/crystal/system/group.cr
312
lib/crystal/crystal/system/group.cr
267
lib/crystal/crystal/system/mime.cr
313
lib/crystal/crystal/system/mime.cr
314
lib/crystal/crystal/system/path.cr
268
lib/crystal/crystal/system/print_error.cr
315
lib/crystal/crystal/system/print_error.cr
269
lib/crystal/crystal/system/process.cr
316
lib/crystal/crystal/system/process.cr
270
lib/crystal/crystal/system/random.cr
317
lib/crystal/crystal/system/random.cr
Lines 288-304 lib/crystal/crystal/system/unix/group.cr Link Here
288
lib/crystal/crystal/system/unix/hostname.cr
335
lib/crystal/crystal/system/unix/hostname.cr
289
lib/crystal/crystal/system/unix/lib_event2.cr
336
lib/crystal/crystal/system/unix/lib_event2.cr
290
lib/crystal/crystal/system/unix/mime.cr
337
lib/crystal/crystal/system/unix/mime.cr
338
lib/crystal/crystal/system/unix/path.cr
291
lib/crystal/crystal/system/unix/process.cr
339
lib/crystal/crystal/system/unix/process.cr
292
lib/crystal/crystal/system/unix/pthread.cr
340
lib/crystal/crystal/system/unix/pthread.cr
293
lib/crystal/crystal/system/unix/pthread_condition_variable.cr
341
lib/crystal/crystal/system/unix/pthread_condition_variable.cr
294
lib/crystal/crystal/system/unix/pthread_mutex.cr
342
lib/crystal/crystal/system/unix/pthread_mutex.cr
295
lib/crystal/crystal/system/unix/socket.cr
343
lib/crystal/crystal/system/unix/socket.cr
344
lib/crystal/crystal/system/unix/syscall.cr
296
lib/crystal/crystal/system/unix/sysconf_cpucount.cr
345
lib/crystal/crystal/system/unix/sysconf_cpucount.cr
297
lib/crystal/crystal/system/unix/sysctl_cpucount.cr
346
lib/crystal/crystal/system/unix/sysctl_cpucount.cr
298
lib/crystal/crystal/system/unix/time.cr
347
lib/crystal/crystal/system/unix/time.cr
299
lib/crystal/crystal/system/unix/urandom.cr
348
lib/crystal/crystal/system/unix/urandom.cr
300
lib/crystal/crystal/system/unix/user.cr
349
lib/crystal/crystal/system/unix/user.cr
301
lib/crystal/crystal/system/user.cr
350
lib/crystal/crystal/system/user.cr
351
lib/crystal/crystal/system/wasi/cpucount.cr
352
lib/crystal/crystal/system/wasi/dir.cr
353
lib/crystal/crystal/system/wasi/event_loop.cr
354
lib/crystal/crystal/system/wasi/fiber.cr
355
lib/crystal/crystal/system/wasi/file.cr
356
lib/crystal/crystal/system/wasi/file_descriptor.cr
357
lib/crystal/crystal/system/wasi/group.cr
358
lib/crystal/crystal/system/wasi/hostname.cr
359
lib/crystal/crystal/system/wasi/lib_wasi.cr
360
lib/crystal/crystal/system/wasi/main.cr
361
lib/crystal/crystal/system/wasi/path.cr
362
lib/crystal/crystal/system/wasi/process.cr
363
lib/crystal/crystal/system/wasi/random.cr
364
lib/crystal/crystal/system/wasi/socket.cr
365
lib/crystal/crystal/system/wasi/thread.cr
366
lib/crystal/crystal/system/wasi/thread_mutex.cr
367
lib/crystal/crystal/system/wasi/user.cr
368
lib/crystal/crystal/system/wasi/wasi.cr
302
lib/crystal/crystal/system/win32/cpucount.cr
369
lib/crystal/crystal/system/win32/cpucount.cr
303
lib/crystal/crystal/system/win32/dir.cr
370
lib/crystal/crystal/system/win32/dir.cr
304
lib/crystal/crystal/system/win32/env.cr
371
lib/crystal/crystal/system/win32/env.cr
Lines 309-321 lib/crystal/crystal/system/win32/file_descriptor.cr Link Here
309
lib/crystal/crystal/system/win32/file_info.cr
376
lib/crystal/crystal/system/win32/file_info.cr
310
lib/crystal/crystal/system/win32/hostname.cr
377
lib/crystal/crystal/system/win32/hostname.cr
311
lib/crystal/crystal/system/win32/mime.cr
378
lib/crystal/crystal/system/win32/mime.cr
379
lib/crystal/crystal/system/win32/path.cr
312
lib/crystal/crystal/system/win32/process.cr
380
lib/crystal/crystal/system/win32/process.cr
313
lib/crystal/crystal/system/win32/random.cr
381
lib/crystal/crystal/system/win32/random.cr
314
lib/crystal/crystal/system/win32/socket.cr
382
lib/crystal/crystal/system/win32/socket.cr
315
lib/crystal/crystal/system/win32/thread.cr
383
lib/crystal/crystal/system/win32/thread.cr
316
lib/crystal/crystal/system/win32/thread_mutex.cr
384
lib/crystal/crystal/system/win32/thread_mutex.cr
317
lib/crystal/crystal/system/win32/time.cr
385
lib/crystal/crystal/system/win32/time.cr
386
lib/crystal/crystal/system/win32/visual_studio.cr
318
lib/crystal/crystal/system/win32/windows_registry.cr
387
lib/crystal/crystal/system/win32/windows_registry.cr
388
lib/crystal/crystal/system/win32/windows_sdk.cr
389
lib/crystal/crystal/system/win32/wmain.cr
319
lib/crystal/crystal/system/win32/zone_names.cr
390
lib/crystal/crystal/system/win32/zone_names.cr
320
lib/crystal/crystal/system/windows.cr
391
lib/crystal/crystal/system/windows.cr
321
lib/crystal/crystal/thread_local_value.cr
392
lib/crystal/crystal/thread_local_value.cr
Lines 355-369 lib/crystal/exception.cr Link Here
355
lib/crystal/exception/call_stack.cr
426
lib/crystal/exception/call_stack.cr
356
lib/crystal/exception/call_stack/dwarf.cr
427
lib/crystal/exception/call_stack/dwarf.cr
357
lib/crystal/exception/call_stack/elf.cr
428
lib/crystal/exception/call_stack/elf.cr
429
lib/crystal/exception/call_stack/interpreter.cr
358
lib/crystal/exception/call_stack/libunwind.cr
430
lib/crystal/exception/call_stack/libunwind.cr
359
lib/crystal/exception/call_stack/mach_o.cr
431
lib/crystal/exception/call_stack/mach_o.cr
360
lib/crystal/exception/call_stack/null.cr
432
lib/crystal/exception/call_stack/null.cr
433
lib/crystal/exception/call_stack/stackwalk.cr
361
lib/crystal/exception/lib_unwind.cr
434
lib/crystal/exception/lib_unwind.cr
362
lib/crystal/fiber.cr
435
lib/crystal/fiber.cr
363
lib/crystal/fiber/context.cr
436
lib/crystal/fiber/context.cr
364
lib/crystal/fiber/context/aarch64.cr
437
lib/crystal/fiber/context/aarch64.cr
365
lib/crystal/fiber/context/arm.cr
438
lib/crystal/fiber/context/arm.cr
366
lib/crystal/fiber/context/i386.cr
439
lib/crystal/fiber/context/i386.cr
440
lib/crystal/fiber/context/interpreted.cr
441
lib/crystal/fiber/context/wasm32.cr
367
lib/crystal/fiber/context/x86_64-microsoft.cr
442
lib/crystal/fiber/context/x86_64-microsoft.cr
368
lib/crystal/fiber/context/x86_64-sysv.cr
443
lib/crystal/fiber/context/x86_64-sysv.cr
369
lib/crystal/fiber/stack_pool.cr
444
lib/crystal/fiber/stack_pool.cr
Lines 427-432 lib/crystal/io/byte_format.cr Link Here
427
lib/crystal/io/console.cr
502
lib/crystal/io/console.cr
428
lib/crystal/io/delimited.cr
503
lib/crystal/io/delimited.cr
429
lib/crystal/io/encoding.cr
504
lib/crystal/io/encoding.cr
505
lib/crystal/io/encoding_stubs.cr
430
lib/crystal/io/error.cr
506
lib/crystal/io/error.cr
431
lib/crystal/io/evented.cr
507
lib/crystal/io/evented.cr
432
lib/crystal/io/file_descriptor.cr
508
lib/crystal/io/file_descriptor.cr
Lines 516-522 lib/crystal/lib_c/aarch64-linux-gnu/c/sys/resource.cr Link Here
516
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/select.cr
592
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/select.cr
517
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/socket.cr
593
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/socket.cr
518
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/stat.cr
594
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/stat.cr
519
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/syscall.cr
520
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/time.cr
595
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/time.cr
521
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/types.cr
596
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/types.cr
522
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/un.cr
597
lib/crystal/lib_c/aarch64-linux-gnu/c/sys/un.cr
Lines 552-558 lib/crystal/lib_c/aarch64-linux-musl/c/sys/resource.cr Link Here
552
lib/crystal/lib_c/aarch64-linux-musl/c/sys/select.cr
627
lib/crystal/lib_c/aarch64-linux-musl/c/sys/select.cr
553
lib/crystal/lib_c/aarch64-linux-musl/c/sys/socket.cr
628
lib/crystal/lib_c/aarch64-linux-musl/c/sys/socket.cr
554
lib/crystal/lib_c/aarch64-linux-musl/c/sys/stat.cr
629
lib/crystal/lib_c/aarch64-linux-musl/c/sys/stat.cr
555
lib/crystal/lib_c/aarch64-linux-musl/c/sys/syscall.cr
556
lib/crystal/lib_c/aarch64-linux-musl/c/sys/time.cr
630
lib/crystal/lib_c/aarch64-linux-musl/c/sys/time.cr
557
lib/crystal/lib_c/aarch64-linux-musl/c/sys/types.cr
631
lib/crystal/lib_c/aarch64-linux-musl/c/sys/types.cr
558
lib/crystal/lib_c/aarch64-linux-musl/c/sys/un.cr
632
lib/crystal/lib_c/aarch64-linux-musl/c/sys/un.cr
Lines 590-596 lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/resource.cr Link Here
590
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/select.cr
664
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/select.cr
591
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/socket.cr
665
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/socket.cr
592
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/stat.cr
666
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/stat.cr
593
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/syscall.cr
594
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/time.cr
667
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/time.cr
595
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/types.cr
668
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/types.cr
596
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/un.cr
669
lib/crystal/lib_c/arm-linux-gnueabihf/c/sys/un.cr
Lines 626-632 lib/crystal/lib_c/i386-linux-gnu/c/sys/resource.cr Link Here
626
lib/crystal/lib_c/i386-linux-gnu/c/sys/select.cr
699
lib/crystal/lib_c/i386-linux-gnu/c/sys/select.cr
627
lib/crystal/lib_c/i386-linux-gnu/c/sys/socket.cr
700
lib/crystal/lib_c/i386-linux-gnu/c/sys/socket.cr
628
lib/crystal/lib_c/i386-linux-gnu/c/sys/stat.cr
701
lib/crystal/lib_c/i386-linux-gnu/c/sys/stat.cr
629
lib/crystal/lib_c/i386-linux-gnu/c/sys/syscall.cr
630
lib/crystal/lib_c/i386-linux-gnu/c/sys/time.cr
702
lib/crystal/lib_c/i386-linux-gnu/c/sys/time.cr
631
lib/crystal/lib_c/i386-linux-gnu/c/sys/types.cr
703
lib/crystal/lib_c/i386-linux-gnu/c/sys/types.cr
632
lib/crystal/lib_c/i386-linux-gnu/c/sys/un.cr
704
lib/crystal/lib_c/i386-linux-gnu/c/sys/un.cr
Lines 662-668 lib/crystal/lib_c/i386-linux-musl/c/sys/resource.cr Link Here
662
lib/crystal/lib_c/i386-linux-musl/c/sys/select.cr
734
lib/crystal/lib_c/i386-linux-musl/c/sys/select.cr
663
lib/crystal/lib_c/i386-linux-musl/c/sys/socket.cr
735
lib/crystal/lib_c/i386-linux-musl/c/sys/socket.cr
664
lib/crystal/lib_c/i386-linux-musl/c/sys/stat.cr
736
lib/crystal/lib_c/i386-linux-musl/c/sys/stat.cr
665
lib/crystal/lib_c/i386-linux-musl/c/sys/syscall.cr
666
lib/crystal/lib_c/i386-linux-musl/c/sys/time.cr
737
lib/crystal/lib_c/i386-linux-musl/c/sys/time.cr
667
lib/crystal/lib_c/i386-linux-musl/c/sys/types.cr
738
lib/crystal/lib_c/i386-linux-musl/c/sys/types.cr
668
lib/crystal/lib_c/i386-linux-musl/c/sys/un.cr
739
lib/crystal/lib_c/i386-linux-musl/c/sys/un.cr
Lines 672-677 lib/crystal/lib_c/i386-linux-musl/c/time.cr Link Here
672
lib/crystal/lib_c/i386-linux-musl/c/unistd.cr
743
lib/crystal/lib_c/i386-linux-musl/c/unistd.cr
673
lib/crystal/lib_c/i686-linux-gnu
744
lib/crystal/lib_c/i686-linux-gnu
674
lib/crystal/lib_c/i686-linux-musl
745
lib/crystal/lib_c/i686-linux-musl
746
lib/crystal/lib_c/wasm32-wasi/c/arpa/inet.cr
747
lib/crystal/lib_c/wasm32-wasi/c/errno.cr
748
lib/crystal/lib_c/wasm32-wasi/c/fcntl.cr
749
lib/crystal/lib_c/wasm32-wasi/c/iconv.cr
750
lib/crystal/lib_c/wasm32-wasi/c/netdb.cr
751
lib/crystal/lib_c/wasm32-wasi/c/netinet/in.cr
752
lib/crystal/lib_c/wasm32-wasi/c/netinet/tcp.cr
753
lib/crystal/lib_c/wasm32-wasi/c/sched.cr
754
lib/crystal/lib_c/wasm32-wasi/c/stdarg.cr
755
lib/crystal/lib_c/wasm32-wasi/c/stddef.cr
756
lib/crystal/lib_c/wasm32-wasi/c/stdint.cr
757
lib/crystal/lib_c/wasm32-wasi/c/stdio.cr
758
lib/crystal/lib_c/wasm32-wasi/c/stdlib.cr
759
lib/crystal/lib_c/wasm32-wasi/c/string.cr
760
lib/crystal/lib_c/wasm32-wasi/c/sys/file.cr
761
lib/crystal/lib_c/wasm32-wasi/c/sys/resource.cr
762
lib/crystal/lib_c/wasm32-wasi/c/sys/select.cr
763
lib/crystal/lib_c/wasm32-wasi/c/sys/socket.cr
764
lib/crystal/lib_c/wasm32-wasi/c/sys/stat.cr
765
lib/crystal/lib_c/wasm32-wasi/c/sys/time.cr
766
lib/crystal/lib_c/wasm32-wasi/c/sys/times.cr
767
lib/crystal/lib_c/wasm32-wasi/c/sys/types.cr
768
lib/crystal/lib_c/wasm32-wasi/c/termios.cr
769
lib/crystal/lib_c/wasm32-wasi/c/time.cr
770
lib/crystal/lib_c/wasm32-wasi/c/unistd.cr
675
lib/crystal/lib_c/x86_64-darwin/c/arpa/inet.cr
771
lib/crystal/lib_c/x86_64-darwin/c/arpa/inet.cr
676
lib/crystal/lib_c/x86_64-darwin/c/dirent.cr
772
lib/crystal/lib_c/x86_64-darwin/c/dirent.cr
677
lib/crystal/lib_c/x86_64-darwin/c/dlfcn.cr
773
lib/crystal/lib_c/x86_64-darwin/c/dlfcn.cr
Lines 806-812 lib/crystal/lib_c/x86_64-linux-gnu/c/sys/resource.cr Link Here
806
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/select.cr
902
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/select.cr
807
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/socket.cr
903
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/socket.cr
808
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/stat.cr
904
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/stat.cr
809
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/syscall.cr
810
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/time.cr
905
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/time.cr
811
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/types.cr
906
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/types.cr
812
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/un.cr
907
lib/crystal/lib_c/x86_64-linux-gnu/c/sys/un.cr
Lines 842-848 lib/crystal/lib_c/x86_64-linux-musl/c/sys/resource.cr Link Here
842
lib/crystal/lib_c/x86_64-linux-musl/c/sys/select.cr
937
lib/crystal/lib_c/x86_64-linux-musl/c/sys/select.cr
843
lib/crystal/lib_c/x86_64-linux-musl/c/sys/socket.cr
938
lib/crystal/lib_c/x86_64-linux-musl/c/sys/socket.cr
844
lib/crystal/lib_c/x86_64-linux-musl/c/sys/stat.cr
939
lib/crystal/lib_c/x86_64-linux-musl/c/sys/stat.cr
845
lib/crystal/lib_c/x86_64-linux-musl/c/sys/syscall.cr
846
lib/crystal/lib_c/x86_64-linux-musl/c/sys/time.cr
940
lib/crystal/lib_c/x86_64-linux-musl/c/sys/time.cr
847
lib/crystal/lib_c/x86_64-linux-musl/c/sys/types.cr
941
lib/crystal/lib_c/x86_64-linux-musl/c/sys/types.cr
848
lib/crystal/lib_c/x86_64-linux-musl/c/sys/un.cr
942
lib/crystal/lib_c/x86_64-linux-musl/c/sys/un.cr
Lines 927-934 lib/crystal/lib_c/x86_64-portbld-freebsd Link Here
927
lib/crystal/lib_c/x86_64-unknown-freebsd
1021
lib/crystal/lib_c/x86_64-unknown-freebsd
928
lib/crystal/lib_c/x86_64-windows-msvc/c/afunix.cr
1022
lib/crystal/lib_c/x86_64-windows-msvc/c/afunix.cr
929
lib/crystal/lib_c/x86_64-windows-msvc/c/basetsd.cr
1023
lib/crystal/lib_c/x86_64-windows-msvc/c/basetsd.cr
1024
lib/crystal/lib_c/x86_64-windows-msvc/c/combaseapi.cr
930
lib/crystal/lib_c/x86_64-windows-msvc/c/consoleapi.cr
1025
lib/crystal/lib_c/x86_64-windows-msvc/c/consoleapi.cr
1026
lib/crystal/lib_c/x86_64-windows-msvc/c/consoleapi2.cr
931
lib/crystal/lib_c/x86_64-windows-msvc/c/corecrt.cr
1027
lib/crystal/lib_c/x86_64-windows-msvc/c/corecrt.cr
1028
lib/crystal/lib_c/x86_64-windows-msvc/c/dbghelp.cr
932
lib/crystal/lib_c/x86_64-windows-msvc/c/direct.cr
1029
lib/crystal/lib_c/x86_64-windows-msvc/c/direct.cr
933
lib/crystal/lib_c/x86_64-windows-msvc/c/errhandlingapi.cr
1030
lib/crystal/lib_c/x86_64-windows-msvc/c/errhandlingapi.cr
934
lib/crystal/lib_c/x86_64-windows-msvc/c/errno.cr
1031
lib/crystal/lib_c/x86_64-windows-msvc/c/errno.cr
Lines 941-947 lib/crystal/lib_c/x86_64-windows-msvc/c/inaddr.cr Link Here
941
lib/crystal/lib_c/x86_64-windows-msvc/c/int_safe.cr
1038
lib/crystal/lib_c/x86_64-windows-msvc/c/int_safe.cr
942
lib/crystal/lib_c/x86_64-windows-msvc/c/io.cr
1039
lib/crystal/lib_c/x86_64-windows-msvc/c/io.cr
943
lib/crystal/lib_c/x86_64-windows-msvc/c/ioapiset.cr
1040
lib/crystal/lib_c/x86_64-windows-msvc/c/ioapiset.cr
1041
lib/crystal/lib_c/x86_64-windows-msvc/c/knownfolders.cr
944
lib/crystal/lib_c/x86_64-windows-msvc/c/libloaderapi.cr
1042
lib/crystal/lib_c/x86_64-windows-msvc/c/libloaderapi.cr
1043
lib/crystal/lib_c/x86_64-windows-msvc/c/malloc.cr
945
lib/crystal/lib_c/x86_64-windows-msvc/c/memoryapi.cr
1044
lib/crystal/lib_c/x86_64-windows-msvc/c/memoryapi.cr
946
lib/crystal/lib_c/x86_64-windows-msvc/c/minwinbase.cr
1045
lib/crystal/lib_c/x86_64-windows-msvc/c/minwinbase.cr
947
lib/crystal/lib_c/x86_64-windows-msvc/c/mswsock.cr
1046
lib/crystal/lib_c/x86_64-windows-msvc/c/mswsock.cr
Lines 950-961 lib/crystal/lib_c/x86_64-windows-msvc/c/processenv.cr Link Here
950
lib/crystal/lib_c/x86_64-windows-msvc/c/processthreadsapi.cr
1049
lib/crystal/lib_c/x86_64-windows-msvc/c/processthreadsapi.cr
951
lib/crystal/lib_c/x86_64-windows-msvc/c/profileapi.cr
1050
lib/crystal/lib_c/x86_64-windows-msvc/c/profileapi.cr
952
lib/crystal/lib_c/x86_64-windows-msvc/c/regapix.cr
1051
lib/crystal/lib_c/x86_64-windows-msvc/c/regapix.cr
1052
lib/crystal/lib_c/x86_64-windows-msvc/c/shlobj_core.cr
953
lib/crystal/lib_c/x86_64-windows-msvc/c/stdarg.cr
1053
lib/crystal/lib_c/x86_64-windows-msvc/c/stdarg.cr
954
lib/crystal/lib_c/x86_64-windows-msvc/c/stddef.cr
1054
lib/crystal/lib_c/x86_64-windows-msvc/c/stddef.cr
955
lib/crystal/lib_c/x86_64-windows-msvc/c/stdint.cr
1055
lib/crystal/lib_c/x86_64-windows-msvc/c/stdint.cr
956
lib/crystal/lib_c/x86_64-windows-msvc/c/stdio.cr
1056
lib/crystal/lib_c/x86_64-windows-msvc/c/stdio.cr
957
lib/crystal/lib_c/x86_64-windows-msvc/c/stdlib.cr
1057
lib/crystal/lib_c/x86_64-windows-msvc/c/stdlib.cr
958
lib/crystal/lib_c/x86_64-windows-msvc/c/string.cr
1058
lib/crystal/lib_c/x86_64-windows-msvc/c/string.cr
1059
lib/crystal/lib_c/x86_64-windows-msvc/c/stringapiset.cr
959
lib/crystal/lib_c/x86_64-windows-msvc/c/synchapi.cr
1060
lib/crystal/lib_c/x86_64-windows-msvc/c/synchapi.cr
960
lib/crystal/lib_c/x86_64-windows-msvc/c/sys/stat.cr
1061
lib/crystal/lib_c/x86_64-windows-msvc/c/sys/stat.cr
961
lib/crystal/lib_c/x86_64-windows-msvc/c/sys/types.cr
1062
lib/crystal/lib_c/x86_64-windows-msvc/c/sys/types.cr
Lines 965-970 lib/crystal/lib_c/x86_64-windows-msvc/c/timezoneapi.cr Link Here
965
lib/crystal/lib_c/x86_64-windows-msvc/c/win_def.cr
1066
lib/crystal/lib_c/x86_64-windows-msvc/c/win_def.cr
966
lib/crystal/lib_c/x86_64-windows-msvc/c/winbase.cr
1067
lib/crystal/lib_c/x86_64-windows-msvc/c/winbase.cr
967
lib/crystal/lib_c/x86_64-windows-msvc/c/windows.cr
1068
lib/crystal/lib_c/x86_64-windows-msvc/c/windows.cr
1069
lib/crystal/lib_c/x86_64-windows-msvc/c/winnls.cr
968
lib/crystal/lib_c/x86_64-windows-msvc/c/winnt.cr
1070
lib/crystal/lib_c/x86_64-windows-msvc/c/winnt.cr
969
lib/crystal/lib_c/x86_64-windows-msvc/c/winreg.cr
1071
lib/crystal/lib_c/x86_64-windows-msvc/c/winreg.cr
970
lib/crystal/lib_c/x86_64-windows-msvc/c/winsock2.cr
1072
lib/crystal/lib_c/x86_64-windows-msvc/c/winsock2.cr
Lines 977-982 lib/crystal/llvm.cr Link Here
977
lib/crystal/llvm/abi.cr
1079
lib/crystal/llvm/abi.cr
978
lib/crystal/llvm/abi/aarch64.cr
1080
lib/crystal/llvm/abi/aarch64.cr
979
lib/crystal/llvm/abi/arm.cr
1081
lib/crystal/llvm/abi/arm.cr
1082
lib/crystal/llvm/abi/wasm32.cr
980
lib/crystal/llvm/abi/x86.cr
1083
lib/crystal/llvm/abi/x86.cr
981
lib/crystal/llvm/abi/x86_64.cr
1084
lib/crystal/llvm/abi/x86_64.cr
982
lib/crystal/llvm/abi/x86_win64.cr
1085
lib/crystal/llvm/abi/x86_win64.cr
Lines 1036-1041 lib/crystal/mime/media_type.cr Link Here
1036
lib/crystal/mime/multipart.cr
1139
lib/crystal/mime/multipart.cr
1037
lib/crystal/mime/multipart/builder.cr
1140
lib/crystal/mime/multipart/builder.cr
1038
lib/crystal/mime/multipart/parser.cr
1141
lib/crystal/mime/multipart/parser.cr
1142
lib/crystal/mime/multipart/state.cr
1039
lib/crystal/mutex.cr
1143
lib/crystal/mutex.cr
1040
lib/crystal/named_tuple.cr
1144
lib/crystal/named_tuple.cr
1041
lib/crystal/nil.cr
1145
lib/crystal/nil.cr
Lines 1067-1073 lib/crystal/openssl/digest.cr Link Here
1067
lib/crystal/openssl/error.cr
1171
lib/crystal/openssl/error.cr
1068
lib/crystal/openssl/hmac.cr
1172
lib/crystal/openssl/hmac.cr
1069
lib/crystal/openssl/lib_crypto.cr
1173
lib/crystal/openssl/lib_crypto.cr
1174
lib/crystal/openssl/lib_crypto.cr.bak
1175
lib/crystal/openssl/lib_crypto.cr.orig
1070
lib/crystal/openssl/lib_ssl.cr
1176
lib/crystal/openssl/lib_ssl.cr
1177
lib/crystal/openssl/lib_ssl.cr.bak
1178
lib/crystal/openssl/lib_ssl.cr.orig
1071
lib/crystal/openssl/md5.cr
1179
lib/crystal/openssl/md5.cr
1072
lib/crystal/openssl/pkcs5.cr
1180
lib/crystal/openssl/pkcs5.cr
1073
lib/crystal/openssl/sha1.cr
1181
lib/crystal/openssl/sha1.cr
Lines 1139-1149 lib/crystal/steppable.cr Link Here
1139
lib/crystal/string.cr
1247
lib/crystal/string.cr
1140
lib/crystal/string/builder.cr
1248
lib/crystal/string/builder.cr
1141
lib/crystal/string/formatter.cr
1249
lib/crystal/string/formatter.cr
1250
lib/crystal/string/grapheme.cr
1251
lib/crystal/string/grapheme/grapheme.cr
1252
lib/crystal/string/grapheme/properties.cr
1142
lib/crystal/string/utf16.cr
1253
lib/crystal/string/utf16.cr
1143
lib/crystal/string_pool.cr
1254
lib/crystal/string_pool.cr
1144
lib/crystal/string_scanner.cr
1255
lib/crystal/string_scanner.cr
1145
lib/crystal/struct.cr
1256
lib/crystal/struct.cr
1146
lib/crystal/symbol.cr
1257
lib/crystal/symbol.cr
1258
lib/crystal/syscall.cr
1259
lib/crystal/syscall/aarch64-linux.cr
1260
lib/crystal/syscall/arm-linux.cr
1261
lib/crystal/syscall/i386-linux.cr
1262
lib/crystal/syscall/x86_64-linux.cr
1147
lib/crystal/system.cr
1263
lib/crystal/system.cr
1148
lib/crystal/system/group.cr
1264
lib/crystal/system/group.cr
1149
lib/crystal/system/user.cr
1265
lib/crystal/system/user.cr
Lines 1178-1183 lib/crystal/uuid/json.cr Link Here
1178
lib/crystal/uuid/yaml.cr
1294
lib/crystal/uuid/yaml.cr
1179
lib/crystal/va_list.cr
1295
lib/crystal/va_list.cr
1180
lib/crystal/value.cr
1296
lib/crystal/value.cr
1297
lib/crystal/wasi_error.cr
1181
lib/crystal/weak_ref.cr
1298
lib/crystal/weak_ref.cr
1182
lib/crystal/windows_stubs.cr
1299
lib/crystal/windows_stubs.cr
1183
lib/crystal/winerror.cr
1300
lib/crystal/winerror.cr
1184
- 

Return to bug 262581