We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following script succeeds or fails with NoMethodError randomly.
current_line': undefined method
close_tags': undefined method
To reproduce, give two (large) integer numbers: number of threads and number of loops
require 'himl' require 'erb' parser = Himl::Parser.new template = '<%= 1 %>' nthreads = (ARGV.shift || 10).to_i nloop = (ARGV.shift || 1000).to_i nthreads.times.map { Thread.start do nloop.times do ERB.new(parser.call(template).to_erb).result end end }.each(&:join)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following script succeeds or fails with NoMethodError randomly.
current_line': undefined method
column' for nil:NilClass (NoMethodError)close_tags': undefined method
name' for nil:NilClass (NoMethodError)To reproduce, give two (large) integer numbers: number of threads and number of loops
The text was updated successfully, but these errors were encountered: