Files
ZuneShell.dll/UIX/SSVParseLib/SSYaccStackElement.cs
T

30 lines
791 B
C#
Raw Normal View History

// Decompiled with JetBrains decompiler
// Type: SSVParseLib.SSYaccStackElement
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
// Assembly location: C:\Program Files\Zune\UIX.dll
namespace SSVParseLib
{
internal struct SSYaccStackElement
{
private int m_state;
private SSLexLexeme m_lexeme;
private object m_object;
2021-04-02 19:10:51 -05:00
public int state() => m_state;
2021-04-02 19:10:51 -05:00
public SSLexLexeme lexeme() => m_lexeme;
2021-04-02 19:10:51 -05:00
public void setState(int q_state) => m_state = q_state;
2021-04-02 19:10:51 -05:00
public void setLexeme(SSLexLexeme q_lexeme) => m_lexeme = q_lexeme;
public object Object
{
2021-04-02 19:10:51 -05:00
get => m_object;
set => m_object = value;
}
}
}