Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 1.29 KB

yarn.compiler.fileparseresult.md

File metadata and controls

45 lines (27 loc) · 1.29 KB

FileParseResult

Struct in Yarn.Compiler

Inherits from System.ValueType

Summary

Contains the result of parsing a single file of source code.

public struct FileParseResult

Remarks

This class provides only syntactic information about a parse - that is, it provides access to the parse tree, and the stream of tokens used to produce that parse tree.

Constructors

Name Description
FileParseResult(string,IParseTree,CommonTokenStream) Initializes a new instance of the FileParseResult struct.

Methods

Name Description
Equals(object)
GetHashCode()

Properties

Name Description
Name The name of the file.
Tokens The tokens extracted from the file.
Tree The parse tree extracted from the file.