From a7a7485699126a223feb33ed14d00c7dc42a146b Mon Sep 17 00:00:00 2001 From: Bill Rawlinson Date: Fri, 18 Dec 2015 11:23:26 -0500 Subject: [PATCH] create test source file for coldfusion add a sort of ugly cfc for testing --- .../coldfusion/original/test.cfc | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 examples/nested-jsbeautifyrc/coldfusion/original/test.cfc diff --git a/examples/nested-jsbeautifyrc/coldfusion/original/test.cfc b/examples/nested-jsbeautifyrc/coldfusion/original/test.cfc new file mode 100644 index 0000000..6d2a49f --- /dev/null +++ b/examples/nested-jsbeautifyrc/coldfusion/original/test.cfc @@ -0,0 +1,64 @@ + + + + variables.instance = structNew(); + return this; + + + + + + + + + + + + + + + + + + + + + + + + + + + initFormattingRules(); + local.reader = createObject("component", "foo.com.ExcelReader").init(arguments.filepath, arguments.sheetNumber); + local.data = local.reader.read(arguments.ignoreColumnPoint, arguments.dataStartRow); + local.data = local.reader.fixDateAndNumericColumns(local.data, variables.instance.dateColumns, variables.instance.numberColumns); + return local.data; + + + + + + + + + + + + + + + + + + + + + + + + + + +