mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
6 lines
235 B
C#
6 lines
235 B
C#
namespace LanguageJava.Elements{
|
|
public enum FlowStatement{
|
|
If, Else, For, EnhancedFor, While, DoWhile, Switch, SwitchCase, SwitchDefault, TryCatch, TryWithResources, Try, Catch, Finally, Return, Break, Continue
|
|
}
|
|
}
|