Skip to content

Commit 3805a4f

Browse files
committed
Replace Java with C# in C# files
1 parent 673da0d commit 3805a4f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tested/languages/csharp/templates/statement.mako

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Convert a statement and/or expression into Java code.
1+
## Convert a statement and/or expression into C# code.
22
<%! from tested.utils import get_args %>\
33
<%! from tested.serialisation import Value, Identifier, FunctionCall, Assignment %>\
44
<%page args="statement,full=False"/>\
@@ -17,4 +17,4 @@
1717
<%include file="declaration.mako" args="tp=statement.type, value=statement.expression" /> \
1818
% endif
1919
${statement.variable} = <%include file="statement.mako" args="statement=statement.expression"/>\
20-
% endif
20+
% endif

tested/languages/csharp/templates/value.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Convert a Value to a literal type in Java.
1+
## Convert a Value to a literal type in C#.
22
<%! from tested.datatypes import AdvancedSequenceTypes, AdvancedNumericTypes, AdvancedStringTypes %>\
33
<%! from tested.serialisation import as_basic_type, SpecialNumbers %>\
44
<%! from json import dumps %>\

tested/languages/csharp/templates/value_basic.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Convert a Value to a literal type in Java.
1+
## Convert a Value to a literal type in C#.
22
<%! from tested.datatypes import BasicNumericTypes, BasicStringTypes, BasicBooleanTypes, BasicNothingTypes, BasicSequenceTypes, BasicObjectTypes %>\
33
<%! from tested.serialisation import SpecialNumbers, Value %>\
44
<%! from json import dumps %>\

0 commit comments

Comments
 (0)