dlang-community / D-YAML

YAML parser and emitter for the D programming language
https://dlang-community.github.io/D-YAML/
Boost Software License 1.0
118 stars 38 forks source link

Move initializer of `dyaml.resolver.regexes` from static this #266

Closed tom-tan closed 3 years ago

tom-tan commented 3 years ago

It moves the initialization step for regexes from static this to a simple initializer. It partially solves #33.

codecov[bot] commented 3 years ago

Codecov Report

Merging #266 (e676521) into master (ecbd63e) will decrease coverage by 0.01%. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #266      +/-   ##
==========================================
- Coverage   95.27%   95.26%   -0.02%     
==========================================
  Files          28       28              
  Lines        4083     4073      -10     
==========================================
- Hits         3890     3880      -10     
  Misses        193      193              
Impacted Files Coverage Δ
source/dyaml/resolver.d 92.15% <ø> (-1.29%) :arrow_down:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update ecbd63e...e676521. Read the comment docs.

Herringway commented 3 years ago

Looks good to me.

tom-tan commented 3 years ago

Thanks!