Sha256: a98ca5eaa380535c75a56b733792825152e6fd654f54e8f503b1fd5f1610ae65
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
require 'puppet-strings/yard/parsers/json/task_statement' class PuppetStrings::Yard::Parsers::JSON::Parser < YARD::Parser::Base attr_reader :file, :source # Initializes the parser. # @param [String] source The source being parsed. # @param [String] filename The file name of the file being parsed. # @return [void] def initialize(source, filename) @file = filename @source = source @statements = [] end def enumerator @statements end # Parses the source # @return [void] def parse begin json = JSON.parse(source) # TODO: this should compare json to a Task metadata json-schema or perform some other hueristics # to determine what type of statement it represents @statements.push(PuppetStrings::Yard::Parsers::JSON::TaskStatement.new(json, @source, @file)) unless json.empty? rescue # rubocop:disable Style/RescueStandardError Just catch everything log.error "Failed to parse #{@file}: " @statements = [] end @statements.freeze self end end
Version data entries
4 entries across 4 versions & 1 rubygems