Index: Tests/tkt-201128cc88.eagle ================================================================== --- Tests/tkt-201128cc88.eagle +++ Tests/tkt-201128cc88.eagle @@ -34,11 +34,13 @@ namespace _Dynamic${id} { \[SQLiteFunction(Name = "Base64", FuncType = FunctionType.Scalar)\] public class Test${id} : SQLiteFunction { - public override object Invoke(object\[\] args) + public override object Invoke( + object\[\] args + ) { if (args == null) return null; if (args.Length != 1) @@ -59,10 +61,12 @@ return new ArgumentException(String.Format( "argument must be byte array, got {0}", type)); return Convert.ToBase64String((byte\[\]) arg); } + + /////////////////////////////////////////////////////////////////////// public static void Main() { SQLiteFunction.RegisterFunction(typeof(Test${id})); } Index: Tests/tkt-e1b2e0f769.eagle ================================================================== --- Tests/tkt-e1b2e0f769.eagle +++ Tests/tkt-e1b2e0f769.eagle @@ -49,11 +49,12 @@ { public static List Tkt_e1b2e0f769(SQLiteConnection connection) { List result = new List(); - using (SQLiteTransaction transaction = connection.BeginTransaction()) + using (SQLiteTransaction transaction = + connection.BeginTransaction()) { using (SQLiteCommand command = connection.CreateCommand()) { command.CommandText = "${sql}";