Namespace change
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
using IronGo;
|
||||
using IronGo.AST;
|
||||
using IronGo.Serialization;
|
||||
using IronGo.Utilities;
|
||||
using MarketAlly.IronGo;
|
||||
using MarketAlly.IronGo.AST;
|
||||
using MarketAlly.IronGo.Serialization;
|
||||
using MarketAlly.IronGo.Utilities;
|
||||
|
||||
// Example Go source code
|
||||
const string goSource = @"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using IronGo;
|
||||
using IronGo.AST;
|
||||
using IronGo.Serialization;
|
||||
using MarketAlly.IronGo;
|
||||
using MarketAlly.IronGo.AST;
|
||||
using MarketAlly.IronGo.Serialization;
|
||||
using System;
|
||||
|
||||
try
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using IronGo;
|
||||
using IronGo.AST;
|
||||
using IronGo.Utilities;
|
||||
using MarketAlly.IronGo;
|
||||
using MarketAlly.IronGo.AST;
|
||||
using MarketAlly.IronGo.Utilities;
|
||||
|
||||
namespace QuickStart;
|
||||
|
||||
@@ -96,7 +96,7 @@ func main() {
|
||||
// Export to JSON (compact)
|
||||
var json = System.Text.Json.JsonSerializer.Serialize(ast, new System.Text.Json.JsonSerializerOptions
|
||||
{
|
||||
Converters = { new IronGo.Serialization.AstJsonConverter() }
|
||||
Converters = { new MarketAlly.IronGo.Serialization.AstJsonConverter() }
|
||||
});
|
||||
Console.WriteLine($"JSON representation size: {json.Length:N0} characters");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user