dbbab1c761
尽管里面有点粪,但还是生成了漂亮的树,就当给树施肥了 剩下一个小问题:未考虑节点的宽度(因为名称不一样长),但目前未发现对图生成的明显影响 Co-authored-by: jackfiled <xcrenchangjun@outlook.com> Reviewed-on: PostGuard/Canon#33 Co-authored-by: Ichirinko <1621543655@qq.com> Co-committed-by: Ichirinko <1621543655@qq.com>
35 lines
769 B
C#
35 lines
769 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Canon.Server.Models;
|
|
|
|
public class CompileResponse
|
|
{
|
|
[Required]
|
|
public string Id { get; set; }
|
|
|
|
[Required]
|
|
public string SourceCode { get; set; }
|
|
|
|
[Required]
|
|
public string CompiledCode { get; set; }
|
|
|
|
[Required]
|
|
public string ImageAddress { get; set; }
|
|
|
|
public CompileResponse()
|
|
{
|
|
Id = string.Empty;
|
|
SourceCode = string.Empty;
|
|
CompiledCode = string.Empty;
|
|
ImageAddress = string.Empty;
|
|
}
|
|
|
|
public CompileResponse(CompileResult result)
|
|
{
|
|
Id = result.CompileId;
|
|
SourceCode = result.SourceCode;
|
|
CompiledCode = result.CompiledCode;
|
|
ImageAddress = $"/api/file/{result.SytaxTreeImageFilename}";
|
|
}
|
|
}
|