Sha256: 1380f7a4946a733a24a928f07a80739d1c42c2fc6b15614d92f2042e5774b71f
Contents?: true
Size: 1.05 KB
Versions: 4
Compression:
Stored size: 1.05 KB
Contents
# frozen_string_literal: true 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