Skip to content

Commit f9d5fe9

Browse files
authored
Merge pull request swiftlang#244 from slavapestov/open-up-the-publicist
[Swift] Make classes and members of classes 'open' instead of 'public' [4.0] apple-llvm-split-commit: 45e9aa7e30c0df574a87438794e651d5f19699ae apple-llvm-split-dir: lldb/
2 parents dbbbc05 + 1713c14 commit f9d5fe9

File tree

12 files changed

+44
-41
lines changed

12 files changed

+44
-41
lines changed

lldb/packages/Python/lldbsuite/test/repl/breakpoints/TestREPLBreakpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
import unittest2
1717
import lldb
1818
import lldbsuite.test.decorators as decorators
19-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
19+
import lldbsuite.test.lldbrepl as lldbrepl
2020

2121

22-
class REPLBreakpointsTestCase (REPLTest):
22+
class REPLBreakpointsTestCase (lldbrepl.REPLTest):
2323

24-
mydir = REPLTest.compute_mydir(__file__)
24+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2525

2626
@decorators.swiftTest
2727
@decorators.no_debug_info_test

lldb/packages/Python/lldbsuite/test/repl/closures/TestREPLClosure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919

2020

21-
class REPLClosureTestCase (REPLTest):
21+
class REPLClosureTestCase (lldbrepl.REPLTest):
2222

23-
mydir = REPLTest.compute_mydir(__file__)
23+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2424

2525
def doTest(self):
2626
self.command(

lldb/packages/Python/lldbsuite/test/repl/dictionary/TestREPLDictionary.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919
import lldbsuite.test.decorators as decorators
2020

2121

22-
class REPLDictionaryTestCase (REPLTest):
22+
class REPLDictionaryTestCase (lldbrepl.REPLTest):
2323

24-
mydir = REPLTest.compute_mydir(__file__)
24+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2525

2626
@decorators.swiftTest
2727
@decorators.no_debug_info_test

lldb/packages/Python/lldbsuite/test/repl/dyntype/TestREPLDynamicType.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919

2020

21-
class REPLDynamicTypeTestCase (REPLTest):
21+
class REPLDynamicTypeTestCase (lldbrepl.REPLTest):
2222

23-
mydir = REPLTest.compute_mydir(__file__)
23+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2424

2525
def doTest(self):
2626
self.command('type(of: 1)', patterns=['\\$R0: Int.Type = Int'])

lldb/packages/Python/lldbsuite/test/repl/func_definition/TestREPLFunctionDefinition.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919

2020

21-
class REPLFuncDefinitionTestCase (REPLTest):
21+
class REPLFuncDefinitionTestCase (lldbrepl.REPLTest):
2222

23-
mydir = REPLTest.compute_mydir(__file__)
23+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2424

2525
def doTest(self):
2626
self.command(

lldb/packages/Python/lldbsuite/test/repl/int_vars/TestREPLIntVars.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
import unittest2
1717
import lldb
1818
import lldbsuite.test.decorators as decorators
19-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
19+
import lldbsuite.test.lldbrepl as lldbrepl
2020

2121

22-
class REPLIntVarsTestCase (REPLTest):
22+
class REPLIntVarsTestCase (lldbrepl.REPLTest):
2323

24-
mydir = REPLTest.compute_mydir(__file__)
24+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2525

2626
@decorators.swiftTest
2727
@decorators.no_debug_info_test

lldb/packages/Python/lldbsuite/test/repl/multilevelarrays/TestMultilevelArrays.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919

2020

21-
class REPLNestedArrayTestCase (REPLTest):
21+
class REPLNestedArrayTestCase (lldbrepl.REPLTest):
2222

23-
mydir = REPLTest.compute_mydir(__file__)
23+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2424

2525
def doTest(self):
2626
self.command('[[1,2,3,4],[1,2,3],[1,2],[],[1]]', patterns=[

lldb/packages/Python/lldbsuite/test/repl/nsobject_subclass/TestNSObjectSubclass.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919
import lldbsuite.test.decorators as decorators
2020
import lldbsuite.test.lldbtest as lldbtest
2121

2222

23-
class REPLNSObjectSubclassTest (REPLTest):
23+
class REPLNSObjectSubclassTest (lldbrepl.REPLTest):
2424

25-
mydir = REPLTest.compute_mydir(__file__)
25+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2626

2727
@decorators.swiftTest
2828
@decorators.skipUnlessDarwin

lldb/packages/Python/lldbsuite/test/repl/nsstring/TestREPLNSString.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
import unittest2
1717
import lldb
1818
import lldbsuite.test.decorators as decorators
19-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
19+
import lldbsuite.test.lldbrepl as lldbrepl
2020

2121

22-
class REPLNSStringTestCase (REPLTest):
22+
class REPLNSStringTestCase (lldbrepl.REPLTest):
2323

24-
mydir = REPLTest.compute_mydir(__file__)
24+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2525

2626
@decorators.swiftTest
2727
@decorators.skipUnlessDarwin

lldb/packages/Python/lldbsuite/test/repl/quicklookobject/TestREPLQuickLookObject.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
import time
1616
import unittest2
1717
import lldb
18-
from lldbsuite.test.lldbrepl import REPLTest, load_tests
18+
import lldbsuite.test.lldbrepl as lldbrepl
1919
import lldbsuite.test.lldbtest as lldbtest
2020

2121

22-
class REPLQuickLookTestCase (REPLTest):
22+
class REPLQuickLookTestCase (lldbrepl.REPLTest):
2323

24-
mydir = REPLTest.compute_mydir(__file__)
24+
mydir = lldbrepl.REPLTest.compute_mydir(__file__)
2525

2626
def doTest(self):
2727
self.command(

0 commit comments

Comments
 (0)