Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit 8f04b67

Browse files
Merge pull request #416 from xamarin/namespace-juggling
let's move namespaces!
2 parents 3c92b75 + b82fede commit 8f04b67

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+57
-57
lines changed

SwiftReflector/CustomSwiftCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Xml.Linq;
1010
using SwiftReflector.SwiftXmlReflection;
1111
using System.Collections.Generic;
12-
using SwiftReflector.Exceptions;
12+
using SwiftReflector.ExceptionTools;
1313
using System.Linq;
1414
using Dynamo;
1515
using System.Text.RegularExpressions;

SwiftReflector/Demangling/Decomposer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using SwiftReflector.Exceptions;
7+
using SwiftReflector.ExceptionTools;
88
using System.Text;
99
using ObjCRuntime;
1010

SwiftReflector/Demangling/Swift4Demangler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.Text;
77
using ObjCRuntime;
8-
using SwiftReflector.Exceptions;
8+
using SwiftReflector.ExceptionTools;
99

1010
namespace SwiftReflector.Demangling {
1111
public class Swift4Demangler {

SwiftReflector/Demangling/Swift4NodeToTLDefinition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using SwiftReflector.Exceptions;
7+
using SwiftReflector.ExceptionTools;
88

99
namespace SwiftReflector.Demangling {
1010
public class Swift4NodeToTLDefinition {

SwiftReflector/Exceptions/ErrorHelper.cs renamed to SwiftReflector/ExceptionTools/ErrorHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#endif
2828
#endif
2929
#elif BINDING_TOOLS_FOR_SWIFT
30-
using ProductException = SwiftReflector.Exceptions.RuntimeException;
30+
using ProductException = SwiftReflector.ExceptionTools.RuntimeException;
3131
#else
3232
#error Only supports XI or XM
3333
#endif

SwiftReflector/Exceptions/RuntimeException.cs renamed to SwiftReflector/ExceptionTools/RuntimeException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace ObjCRuntime {
1111
#endif
1212
#if BINDING_TOOLS_FOR_SWIFT
13-
namespace SwiftReflector.Exceptions {
13+
namespace SwiftReflector.ExceptionTools {
1414
#endif
1515

1616
public class RuntimeException : Exception {

SwiftReflector/IOUtils/SwiftModuleFinder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.Globalization;
77
using System.IO;
8-
using SwiftReflector.Exceptions;
8+
using SwiftReflector.ExceptionTools;
99
using System.Linq;
1010
using ObjCRuntime;
1111

SwiftReflector/IOUtils/TempDirectoryStreamProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.IO;
66
using System.Collections.Generic;
77
using System.Linq;
8-
using SwiftReflector.Exceptions;
8+
using SwiftReflector.ExceptionTools;
99
using ObjCRuntime;
1010

1111
namespace SwiftReflector.IOUtils {

SwiftReflector/Importing/MemberImporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Dynamo.CSLang;
88
using Mono.Cecil;
99
using ObjCRuntime;
10-
using SwiftReflector.Exceptions;
10+
using SwiftReflector.ExceptionTools;
1111
using SwiftReflector.SwiftXmlReflection;
1212
using SwiftReflector.TypeMapping;
1313

SwiftReflector/Inventory/ClassContents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License.
33

44
using System;
5-
using SwiftReflector.Exceptions;
5+
using SwiftReflector.ExceptionTools;
66
using System.Linq;
77
using System.Collections.Generic;
88
using System.IO;

0 commit comments

Comments
 (0)