Exemplo n.º 1
0
	def __init__(self, view):
		# init super
		SublimErlProjectLoader.__init__(self, view)
		# init
		self.panel_name = 'sublimerl_autocompiler'
		self.panel_buffer = ''
		# setup panel
		self.setup_panel()
 def __init__(self, view):
     # init super
     SublimErlProjectLoader.__init__(self, view)
     # init
     self.panel_name = 'sublimerl_autocompiler'
     self.panel_buffer = ''
     # setup panel
     self.setup_panel()
Exemplo n.º 3
0
	def __init__(self, view):
		# init super
		SublimErlProjectLoader.__init__(self, view)

		# init
		self.initialized = False
		self.panel_name = 'sublimerl'
		self.panel_buffer = ''

		# don't proceed if a test is already running
		global SUBLIMERL
		if SUBLIMERL.test_in_progress == True: return
		SUBLIMERL.test_in_progress = True

		# setup panel
		self.setup_panel()
		# run
		if self.init_tests() == True:
			self.initialized = True
		else:
			SUBLIMERL.test_in_progress = False
Exemplo n.º 4
0
	def __init__(self, view):
		# init super
		SublimErlProjectLoader.__init__(self, view)

		# init
		self.initialized = False
		self.panel_name = 'sublimerl'
		self.panel_buffer = ''

		# don't proceed if a test is already running
		global SUBLIMERL
		if SUBLIMERL.test_in_progress == True: return
		SUBLIMERL.test_in_progress = True

		# setup panel
		self.setup_panel()
		# run
		if self.init_tests() == True:
			self.initialized = True
		else:
			SUBLIMERL.test_in_progress = False