Home | History | Annotate | Download | only in preparser

Lines Matching refs:root

37   def __init__(self, root, path, executable, mode, context):
40 self.root = root
49 testfile = join(self.root, self.GetName()) + ".js"
62 def __init__(self, context, root):
63 super(PreparserTestConfiguration, self).__init__(context, root)
74 filenames = [f[:-3] for f in os.listdir(self.root) if f.endswith(".js")]
78 result.append(PreparserTestCase(self.root,
84 status_file = join(self.root, 'preparser.status')
89 def GetConfiguration(context, root):
90 return PreparserTestConfiguration(context, root)