mirror of https://github.com/icedland/iced.git
Add a SymbolResult ctor with only a string arg
This commit is contained in:
parent
078b1bf666
commit
838837912e
|
@ -263,6 +263,15 @@ namespace Iced.Intel {
|
|||
/// </summary>
|
||||
public readonly SymbolFlags Flags;
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
/// <param name="text">Symbol</param>
|
||||
public SymbolResult(string text) {
|
||||
Text = new TextInfo(text, FormatterOutputTextKind.Label);
|
||||
Flags = 0;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue