Initial commit after migrating repo and assuring the product builds and tests pass

This commit is contained in:
2019-06-23 15:02:23 +02:00
commit 01b1f2a807
300 changed files with 7193 additions and 0 deletions

32
META-INF/MANIFEST.MF Normal file
View File

@ -0,0 +1,32 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: pbi
Bundle-SymbolicName: com.github.eliasgroll.pbi.interpreter
Bundle-Version: 1.0.0.qualifier
Export-Package: edu.fichte.pbi.prgm,
edu.fichte.pbi.prgm.cmd,
edu.fichte.pbi.prgm.cmd.control,
edu.fichte.pbi.prgm.cmd.control.power,
edu.fichte.pbi.prgm.cmd.debug,
edu.fichte.pbi.prgm.cmd.io,
edu.fichte.pbi.prgm.cmd.io.sound,
edu.fichte.pbi.prgm.cmd.loop,
edu.fichte.pbi.prgm.cmd.num,
edu.fichte.pbi.prgm.cmd.storage,
edu.fichte.pbi.prgm.cmd.time,
edu.fichte.pbi.prgm.err,
edu.fichte.pbi.prgm.err.parsing,
edu.fichte.pbi.prgm.err.runtime,
edu.fichte.pbi.prgm.parse,
edu.fichte.pbi.prgm.parse.arithmetical,
edu.fichte.pbi.prgm.parse.relational,
edu.fichte.pbi.prgm.struct,
edu.fichte.pbi.prgm.war,
edu.fichte.pbi.run,
edu.fichte.pbi.run.app,
edu.fichte.pbi.util,
edu.fichte.pbi.vm,
edu.fichte.pbi.vm.storage,
edu.fichte.pbi.vm.var,
edu.fichte.pbi.vm.var.format
Bundle-RequiredExecutionEnvironment: J2SE-1.5

21
META-INF/license.txt Normal file
View File

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) [2015] [Elias Groll and Johanna Reichmann]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.