< Summary

Information
Class: Elsa.Dsl.ElsaScript.Ast.AstNode
Assembly: Elsa.Dsl.ElsaScript
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Dsl.ElsaScript/Ast/AstNode.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 17
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Line()100%210%
get_Column()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Dsl.ElsaScript/Ast/AstNode.cs

#LineLine coverage
 1namespace Elsa.Dsl.ElsaScript.Ast;
 2
 3/// <summary>
 4/// Base class for all AST nodes in ElsaScript.
 5/// </summary>
 6public abstract class AstNode
 7{
 8    /// <summary>
 9    /// The line number in the source where this node starts.
 10    /// </summary>
 011    public int Line { get; set; }
 12
 13    /// <summary>
 14    /// The column number in the source where this node starts.
 15    /// </summary>
 016    public int Column { get; set; }
 17}

Methods/Properties

get_Line()
get_Column()