File tree Expand file tree Collapse file tree
src/transformation/visitors/helpers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import * as ts from "typescript" ;
22import * as lua from "../../../LuaAST" ;
3- import * as utils from "../../utils/helpers" ;
3+ import * as helpers from "../../utils/helpers" ;
44import { isNonNull } from "../../../utils" ;
55import { TransformationContext } from "../../context" ;
66import { transformAssignmentLeftHandSideExpression } from "../binary-expression/assignments" ;
@@ -19,7 +19,7 @@ import {
1919} from "../../../transformation/utils/diagnostics" ;
2020
2121const isMultiHelperDeclaration = ( context : TransformationContext ) => ( declaration : ts . Declaration ) : boolean => {
22- return utils . getHelperFileKind ( context , declaration . getSourceFile ( ) ) === utils . HelperKind . Multi ;
22+ return helpers . getHelperFileKind ( context , declaration . getSourceFile ( ) ) === helpers . HelperKind . Multi ;
2323} ;
2424
2525function isMultiHelperCallSignature ( context : TransformationContext , expression : ts . CallExpression ) : boolean {
You can’t perform that action at this time.
0 commit comments