1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.CodeDom;
using System.Collections.Generic;
using System.Web.Razor.Generator;
using System.Web.Razor.Parser.SyntaxTree;
namespace System.Web.Razor
{
/// <summary>
/// Represents results from code generation (and parsing, since that is a pre-requisite of code generation)
/// </summary>
/// <remarks>
/// Since this inherits from ParserResults, it has all the data from ParserResults, and simply adds code generation data
/// </remarks>
public class GeneratorResults : ParserResults
{
public GeneratorResults(ParserResults parserResults,
CodeCompileUnit generatedCode,
IDictionary<int, GeneratedCodeMapping> designTimeLineMappings)
: this(parserResults.Document, parserResults.ParserErrors, generatedCode, designTimeLineMappings)
{
}
public GeneratorResults(Block document,
IList<RazorError> parserErrors,
CodeCompileUnit generatedCode,
IDictionary<int, GeneratedCodeMapping> designTimeLineMappings)
: this(parserErrors.Count == 0, document, parserErrors, generatedCode, designTimeLineMappings)
{
}
protected GeneratorResults(bool success,
Block document,
IList<RazorError> parserErrors,
CodeCompileUnit generatedCode,
IDictionary<int, GeneratedCodeMapping> designTimeLineMappings)
: base(success, document, parserErrors)
{
GeneratedCode = generatedCode;
DesignTimeLineMappings = designTimeLineMappings;
}
/// <summary>
/// The generated code
/// </summary>
public CodeCompileUnit GeneratedCode { get; private set; }
/// <summary>
/// If design-time mode was used in the Code Generator, this will contain the dictionary
/// of design-time generated code mappings
/// </summary>
public IDictionary<int, GeneratedCodeMapping> DesignTimeLineMappings { get; private set; }
}
}
|