// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; namespace Microsoft.AspNetCore.Razor.Language.CodeGeneration { internal class DefaultCodeTargetBuilder : ICodeTargetBuilder { public DefaultCodeTargetBuilder(RazorCodeDocument codeDocument, RazorParserOptions options) { CodeDocument = codeDocument; Options = options; TargetExtensions = new List(); } public RazorCodeDocument CodeDocument { get; } public RazorParserOptions Options { get; } public ICollection TargetExtensions { get; } public CodeTarget Build() { return new DefaultCodeTarget(Options, TargetExtensions); } } }