Skip to content

Commit de376fb

Browse files
committed
Version 1.5.1:
In ECMAScript 5 Polyfill added polyfill for the `String.prototype.split` method.
1 parent ed93ad3 commit de376fb

22 files changed

+701
-484
lines changed
603 KB
Binary file not shown.
-101 KB
Binary file not shown.
-419 KB
Binary file not shown.

Binaries/WebGrease/WG.exe

-27.6 KB
Binary file not shown.

Binaries/WebGrease/WebGrease.dll

-1.22 MB
Binary file not shown.

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change log
22
==========
33

4+
## January 13, 2015 - v1.5.1
5+
* In ECMAScript 5 Polyfill added polyfill for the `String.prototype.split` method
6+
47
## October 12, 2014 - v1.5.0
58
* Removed dependency on `System.Web.Extensions`
69
* Assembly is now targeted on the .NET Framework 4 Client Profile
@@ -22,7 +25,7 @@ Change log
2225
* Removed following methods: `HasProperty`, `GetPropertyValue`, `SetPropertyValue` and `RemoveProperty`
2326
* Fixed [bug #3](http://github.com/Taritsyn/MsieJavaScriptEngine/issues/3) "execute code from different threads"
2427
* Now in the `ChakraJsRt` mode is available a more detailed information about errors
25-
* In ECMAScript 5 Polyfill improved a performance of the `String.prototype.trim` function
28+
* In ECMAScript 5 Polyfill improved a performance of the `String.prototype.trim` method
2629
* JSON2 library was updated to version of February 4, 2014
2730

2831
## January 16, 2014 - v1.3.0

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2014 Andrey Taritsyn - http://www.taritsyn.ru
1+
Copyright (c) 2012-2015 Andrey Taritsyn - http://www.taritsyn.ru
22

33
Microsoft Public License (Ms-PL)
44

Licenses/webgrease-license.txt renamed to Licenses/microsoft-ajax-minifier-license.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
Apache License 2.0 (Apache)
12

2-
Apache License
3-
Version 2.0, January 2004
4-
http://www.apache.org/licenses/
3+
Apache License
4+
Version 2.0, January 2004
5+
http://www.apache.org/licenses/
56

67
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
78

MsieJavaScriptEngine.Tests/CommonTestsBase.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public abstract class CommonTestsBase
1717
public abstract void SetUp();
1818

1919
#region Evaluation of code
20+
2021
[Test]
2122
public virtual void EvaluationOfExpressionWithUndefinedResultIsCorrect()
2223
{
@@ -105,9 +106,11 @@ public virtual void EvaluationOfExpressionWithStringResultIsCorrect()
105106
// Assert
106107
Assert.AreEqual(targetOutput, output);
107108
}
109+
108110
#endregion
109111

110112
#region Execution of code
113+
111114
[Test]
112115
public virtual void ExecutionOfCodeIsCorrect()
113116
{
@@ -173,9 +176,11 @@ public virtual void ExecutionOfResourceByAssemblyIsCorrect()
173176
// Assert
174177
Assert.AreEqual(targetOutput, output);
175178
}
179+
176180
#endregion
177181

178182
#region Calling of functions
183+
179184
[Test]
180185
public virtual void CallingOfFunctionWithoutParametersIsCorrect()
181186
{
@@ -443,9 +448,11 @@ public virtual void CallingOfFunctionWithManyParametersAndStringResultIsCorrect(
443448
// Assert
444449
Assert.AreEqual("Hello, Petya!", output);
445450
}
451+
446452
#endregion
447453

448454
#region Getting, setting and removing variables
455+
449456
[Test]
450457
public virtual void SettingAndGettingVariableWithUndefinedValueIsCorrect()
451458
{
@@ -605,6 +612,7 @@ public virtual void RemovingVariableIsCorrect()
605612
Assert.IsTrue(variableBeforeRemovingExists);
606613
Assert.IsFalse(variableAfterRemovingExists);
607614
}
615+
608616
#endregion
609617

610618
[TestFixtureTearDown]

MsieJavaScriptEngine.Tests/D_Classic/Es5Tests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public override void SetUp()
1414
}
1515

1616
#region Object methods
17+
1718
[Test]
1819
public override void ObjectKeysMethodIsSupported()
1920
{
@@ -48,6 +49,7 @@ public override void ObjectKeysMethodIsSupported()
4849
Assert.AreEqual(targetOutput3, output3);
4950
Assert.AreEqual(targetOutput4, output4);
5051
}
52+
5153
#endregion
5254
}
5355
}

0 commit comments

Comments
 (0)