Lines Matching full:args
65 def __init__(self, args): argument
66 self.args = args
73 if self.args.src_dir:
74 self.src_dir = self.args.src_dir
76 if self.args.dist_dir:
77 self.dist_dir = self.args.dist_dir
79 if self.args.node_modules:
80 self.node_modules = self.args.node_modules
82 if self.args.platform:
83 self.platform = self.args.platform
126 if self.args.js_file:
127 tests_args = self.args.js_file
154 args = parse_args()
156 test = Ts2abcTests(args)