Skip to content

Commit

Permalink
BooInBoo=>MetaBoo
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.codehaus.org/boo/trunk@479 2c1201b4-01cd-e047-a400-b836ae1fbc61
  • Loading branch information
bamboo committed Apr 29, 2004
1 parent 164ef83 commit d3ee52b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions bb/MetaBoo.Tests/CompilerFixture.boo
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
namespace BooInBoo.Tests
namespace MetaBoo.Tests

import System.IO
import NUnit.Framework
import BooInBoo
import BooInBoo.Pipelines
import BooInBoo.PipelineSteps
import MetaBoo
import MetaBoo.Pipelines
import MetaBoo.PipelineSteps

abstract class AbstractCompilerFixture:
virtual def GetTestCasePath():
Expand All @@ -24,7 +24,7 @@ class CompilerFixture(AbstractCompilerFixture):
return Path.Combine(super(), "compilation")

[TestFixture]
class BooInBooSemanticsTestCase(AbstractCompilerFixture):
class MetaBooSemanticsTestCase(AbstractCompilerFixture):
override def CreatePipeline():
pipeline = CompilePipeline()
pipeline.Add(PrintBoo())
Expand Down
2 changes: 1 addition & 1 deletion bb/MetaBoo/Compiler.boo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace BooInBoo
namespace MetaBoo

import System

Expand Down
4 changes: 2 additions & 2 deletions bb/MetaBoo/PipelineSteps/CreateBindings.boo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace BooInBoo.PipelineSteps
namespace MetaBoo.PipelineSteps

import BooInBoo
import MetaBoo

enum BindingType:
CompileUnit
Expand Down
4 changes: 2 additions & 2 deletions bb/MetaBoo/PipelineSteps/PrintBoo.boo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace BooInBoo.PipelineSteps
namespace MetaBoo.PipelineSteps

import BooInBoo
import MetaBoo
import Boo.Lang.Compiler.Ast
import Boo.Lang.Compiler.Ast.Visitors

Expand Down
4 changes: 2 additions & 2 deletions bb/MetaBoo/PipelineSteps/Run.boo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace BooInBoo.PipelineSteps
namespace MetaBoo.PipelineSteps

import BooInBoo
import MetaBoo

class Run(AbstractCompilerPipelineStep):

Expand Down
4 changes: 2 additions & 2 deletions bb/MetaBoo/Pipelines/CompileToFile.boo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace BooInBoo.Pipelines
namespace MetaBoo.Pipelines

import BooInBoo
import MetaBoo

class ParsePipeline(CompilerPipeline):
static _defaultParserStepType = System.Type.GetType("Boo.AntlrParser.BooParsingStep, Boo.AntlrParser", true)
Expand Down
2 changes: 1 addition & 1 deletion bb/MetaBoo/Services/NameResolutionService.boo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace BooInBoo.Services
namespace MetaBoo.Services

class NameResolutionService:
pass

0 comments on commit d3ee52b

Please sign in to comment.