compiler/TEnvironmentProvider.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 25 Sep 2015 03:51:15 +0100
changeset 16 17a2d1d9f205
parent 10 2b9beeac547e
permissions -rw-r--r--
Added standalone Tea compiler - teak It allows for compilation of .tea files from the command line.

"
    Copyright (C) 2015-now Jan Vrany

    This code is not an open-source (yet). You may use this code
    for your own experiments and projects, given that:

    * all modification to the code will be sent to the
      original author for inclusion in future releases
    * this is not used in any commercial software

    This license is provisional and may (will) change in
    a future.
"
"{ Package: 'jv:tea/compiler' }"

"{ NameSpace: Smalltalk }"

Object subclass:#TEnvironmentProvider
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Tea-Compiler-Model-Provider'
!

!TEnvironmentProvider class methodsFor:'documentation'!

copyright
"
    Copyright (C) 2015-now Jan Vrany

    This code is not an open-source (yet). You may use this code
    for your own experiments and projects, given that:

    * all modification to the code will be sent to the
      original author for inclusion in future releases
    * this is not used in any commercial software

    This license is provisional and may (will) change in
    a future.
"
! !

!TEnvironmentProvider methodsFor:'accessing'!

classNamed:name 
    self subclassResponsibility

    "Created: / 14-09-2015 / 15:07:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!TEnvironmentProvider class methodsFor:'documentation'!

version
    ^ 'Path: jv/tea/compiler/TEnvironmentProvider.st, Version: 1.0, User: jv, Time: 2015-09-14T11:20:34.038+01'
!

version_HG
    ^ 'Path: jv/tea/compiler/TEnvironmentProvider.st, Version: 1.0, User: jv, Time: 2015-09-14T11:20:34.038+01'
! !