##// END OF EJS Templates
Removed obsolete App, ComponentContainer...
Removed obsolete App, ComponentContainer Extracted IAsyncComponent interface Working on RunnableComponent

File last commit:

r230:3e26338eb977 v2
r256:c52691faaf21 v3
Show More
JsonElementContext.cs
11 lines | 198 B | text/x-csharp | CSharpLexer
namespace Implab.Formats.Json {
/// <summary>
/// internal
/// </summary>
enum JsonElementContext {
None,
Object,
Array,
Closed
}
}