Skip to content

Commit d0b1953

Browse files
committed
Update copyright
1 parent d025f9c commit d0b1953

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+87
-88
lines changed

License.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright � Gordon Tisher
1+
Copyright � The IronMeta Developers
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

Samples/Calc/Calc.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<LangVersion>latest</LangVersion>
77
<RootNamespace>IronMeta.Samples.Calc</RootNamespace>
88
<Version>4.4.6</Version>
9-
<Authors>Gordon Tisher</Authors>
9+
<Authors>The IronMeta Developers</Authors>
1010
<Product>IronMeta</Product>
1111
<Description>The IronMeta parser generator provides a programming language and application for generating pattern matchers on arbitrary streams of objects. It is an implementation of Alessandro Warth's OMeta system for C#.</Description>
12-
<Copyright>IronMeta Copyright © Gordon Tisher</Copyright>
12+
<Copyright>IronMeta Copyright © The IronMeta Developers</Copyright>
1313
<PackageLicenseUrl>https://github.com/kulibali/ironmeta/blob/master/License.txt</PackageLicenseUrl>
1414
<PackageProjectUrl>https://github.com/kulibali/ironmeta</PackageProjectUrl>
1515
<RepositoryUrl>https://github.com/kulibali/ironmeta</RepositoryUrl>

Samples/Calc/Calc.ironmeta

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
// IronMeta Copyright � Gordon Tisher 2018
1+
// IronMeta Copyright � The IronMeta Developers
22

33
using System;
44
using System.Linq;
55

66
using IronMeta.Matcher;
77

8-
// This grammar is far more complicated than
8+
// This grammar is far more complicated than
99
// it needs to be, in order to demonstrate
1010
// the features of the IronMeta system.
1111

1212
ironmeta Calc<char, int> : Matcher<char, int>
1313
{
1414
Expression = Additive;
15-
15+
1616
Additive = Add | Sub | Multiplicative;
17-
18-
Add = BinaryOp(Additive, '+', Multiplicative)
17+
18+
Add = BinaryOp(Additive, '+', Multiplicative)
1919
-> { return _IM_Result.Results.Aggregate((total, n) => total + n); };
20-
Sub = BinaryOp(Additive, '-', Multiplicative)
20+
Sub = BinaryOp(Additive, '-', Multiplicative)
2121
-> { return _IM_Result.Results.Aggregate((total, n) => total - n); };
22-
22+
2323
Multiplicative = Multiply | Divide;
2424
Multiplicative = Number(DecimalDigit);
25-
26-
Multiply = BinaryOp(Multiplicative, "*", Number, DecimalDigit)
25+
26+
Multiply = BinaryOp(Multiplicative, "*", Number, DecimalDigit)
2727
-> { return _IM_Result.Results.Aggregate((p, n) => p * n); };
28-
Divide = BinaryOp(Multiplicative, "/", Number, DecimalDigit)
28+
Divide = BinaryOp(Multiplicative, "/", Number, DecimalDigit)
2929
-> { return _IM_Result.Results.Aggregate((q, n) => q / n); };
30-
31-
BinaryOp :first :op :second .?:type = first:a KW(op) second(type):b
30+
31+
BinaryOp :first :op :second .?:type = first:a KW(op) second(type):b
3232
-> { return new List<int> { a, b }; };
33-
33+
3434
Number :type = Digits(type):n WS* -> { return n; };
35-
35+
3636
Digits :type = Digits(type):a type:b -> { return a*10 + b; };
3737
Digits :type = type;
38-
39-
DecimalDigit = ['0'-'9']:c -> { return (char)c - '0'; };
38+
39+
DecimalDigit = ['0'-'9']:c -> { return (char)c - '0'; };
4040
KW :str = str WS*;
4141
WS = ' ' | '\n' | '\r' | '\t';
4242
}

Samples/Calc/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// IronMeta Copyright © Gordon Tisher
1+
// IronMeta Copyright © The IronMeta Developers
22

33
using System;
44

Source/IronMeta.App/IronMeta.App.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<PackageId>IronMeta.App</PackageId>
88
<RootNamespace>IronMeta</RootNamespace>
99
<Version>4.4.6</Version>
10-
<Authors>Gordon Tisher</Authors>
10+
<Authors>The IronMeta Developers</Authors>
1111
<Company />
1212
<Product>IronMeta</Product>
1313
<PackageTags>PEG parser parsergenerator</PackageTags>
1414
<Description>The IronMeta parser generator provides a programming language and application for generating pattern matchers on arbitrary streams of objects. It is an implementation of Alessandro Warth's OMeta system for C#.</Description>
15-
<Copyright>IronMeta Copyright © Gordon Tisher</Copyright>
15+
<Copyright>IronMeta Copyright © The IronMeta Developers</Copyright>
1616
<PackageLicenseUrl>https://github.com/kulibali/ironmeta/blob/master/License.txt</PackageLicenseUrl>
1717
<PackageProjectUrl>https://github.com/kulibali/ironmeta</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/kulibali/ironmeta</RepositoryUrl>

Source/IronMeta.App/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// IronMeta Copyright © Gordon Tisher
1+
// IronMeta Copyright © The IronMeta Developers
22

33
using System;
44
using System.Diagnostics;

Source/IronMeta.Library/Generator/AstNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// IronMeta Copyright © Gordon Tisher
1+
// IronMeta Copyright © The IronMeta Developers
22

33
using System.Collections.Generic;
44
using System.Linq;

Source/IronMeta.Library/Generator/CSharpGen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// IronMeta Copyright © Gordon Tisher
1+
// IronMeta Copyright © The IronMeta Developers
22

33
using System;
44
using System.Collections.Generic;

Source/IronMeta.Library/Generator/CSharpShell.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// IronMeta Copyright © Gordon Tisher
1+
// IronMeta Copyright © The IronMeta Developers
22

33
using System;
44
using System.Collections.Generic;

Source/IronMeta.Library/Generator/IGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// IronMeta Copyright © Gordon Tisher
1+
// IronMeta Copyright © The IronMeta Developers
22

33
using System.IO;
44

0 commit comments

Comments
 (0)