Skip to content

Commit 6cfe793

Browse files
author
Release Action
committed
Build for 7ea062e
1 parent 7ea062e commit 6cfe793

File tree

128 files changed

+3383
-0
lines changed

Some content is hidden

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

128 files changed

+3383
-0
lines changed

dist/bin/glnxa64/run-matlab-command

6.64 MB
Binary file not shown.

dist/bin/license.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2022, The MathWorks, Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice,
8+
this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
3. In all cases, the software is, and all modifications and derivatives of the
15+
software shall be, licensed to you solely for use in conjunction with
16+
MathWorks products and service offerings.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

dist/bin/maci64/run-matlab-command

6.52 MB
Binary file not shown.

dist/bin/thirdpartylicenses.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2013 Google. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above
10+
copyright notice, this list of conditions and the following disclaimer
11+
in the documentation and/or other materials provided with the
12+
distribution.
13+
* Neither the name of Google Inc. nor the names of its
14+
contributors may be used to endorse or promote products derived from
15+
this software without specific prior written permission.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+

dist/bin/win64/run-matlab-command.exe

6.63 MB
Binary file not shown.

dist/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
classdef CreateCoberturaAndHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2022 The MathWorks, Inc.
3+
4+
properties
5+
CoberturaFilePath = '''coverage.xml'''
6+
HTMLFolderPath = '''htmlCodeCoverage'''
7+
Source = {'pwd'}
8+
end
9+
10+
methods
11+
function set.CoberturaFilePath(obj, value)
12+
scriptgen.internal.validateTextScalar(value);
13+
obj.CoberturaFilePath = value;
14+
end
15+
16+
function set.HTMLFolderPath(obj, value)
17+
scriptgen.internal.validateTextScalar(value);
18+
obj.HTMLFolderPath = value;
19+
end
20+
21+
function set.Source(obj, value)
22+
scriptgen.internal.validateTextArray(value);
23+
obj.Source = value;
24+
end
25+
end
26+
end
27+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaAndHTMLCodePluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaAndHTMLCodePluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaAndHTMLCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
classdef CreateCoberturaCodePluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FilePath = '''coverage.xml'''
6+
Source = {'pwd'}
7+
end
8+
9+
methods
10+
function set.FilePath(obj, value)
11+
scriptgen.internal.validateTextScalar(value);
12+
obj.FilePath = value;
13+
end
14+
15+
function set.Source(obj, value)
16+
scriptgen.internal.validateTextArray(value);
17+
obj.Source = value;
18+
end
19+
end
20+
end
21+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaCodePluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaCodePluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
classdef CreateCoberturaModelPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FilePath = '''coverage.xml'''
6+
end
7+
8+
methods
9+
function set.FilePath(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.FilePath = value;
12+
end
13+
end
14+
end
15+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaModelPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaModelPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateCoberturaModelPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateCoberturaModelPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateFailOnWarningsPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2022 The MathWorks, Inc.
3+
end
4+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateFailOnWarningsPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateFailOnWarningsPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateFailOnWarningsPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateFailOnWarningsPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
classdef CreateHTMLCodePluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FolderPath = '''htmlCodeCoverage'''
6+
Source = {'pwd'}
7+
end
8+
9+
methods
10+
function set.FolderPath(obj, value)
11+
scriptgen.internal.validateTextScalar(value);
12+
obj.FolderPath = value;
13+
end
14+
15+
function set.Source(obj, value)
16+
scriptgen.internal.validateTextArray(value);
17+
obj.Source = value;
18+
end
19+
end
20+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateHTMLCodePluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateHTMLCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateHTMLCodePluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateHTMLCodePluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
classdef CreateHTMLModelPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2021 The MathWorks, Inc.
3+
4+
properties
5+
FolderPath = '''htmlModelCoverage'''
6+
end
7+
8+
methods
9+
function set.FolderPath(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.FolderPath = value;
12+
end
13+
end
14+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateHTMLModelPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateHTMLModelPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateHTMLModelPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateHTMLModelPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
classdef CreateHTMLTestReportPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2021 The MathWorks, Inc.
3+
4+
properties
5+
FolderPath = '''report'''
6+
end
7+
8+
methods
9+
function set.FolderPath(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.FolderPath = value;
12+
end
13+
end
14+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateHTMLTestReportPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateHTMLTestReportPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateHTMLTestReportPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateHTMLTestReportPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
classdef CreateHasBaseFolderSelectorExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
BaseFolder = {'pwd'}
6+
end
7+
8+
methods
9+
function set.BaseFolder(obj, value)
10+
scriptgen.internal.validateTextArray(value);
11+
obj.BaseFolder = value;
12+
end
13+
end
14+
end
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
classdef CreateHasTagSelectorExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
Tag = '''tag'''
6+
end
7+
8+
methods
9+
function set.Tag(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.Tag = value;
12+
end
13+
end
14+
end
15+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
classdef CreateJUnitPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FilePath = '''results.xml'''
6+
end
7+
8+
methods
9+
function set.FilePath(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.FilePath = value;
12+
end
13+
end
14+
end
15+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateJUnitPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateJUnitPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateJUnitPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateJUnitPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
classdef CreatePDFPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FilePath = '''report.pdf'''
6+
end
7+
8+
methods
9+
function set.FilePath(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.FilePath = value;
12+
end
13+
end
14+
end
15+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreatePDFPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreatePDFPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreatePDFPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreatePDFPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
classdef CreateSimulinkTestPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
end
4+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateSimulinkTestPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateSimulinkTestPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateSimulinkTestPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateSimulinkTestPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
classdef CreateSimulinkTestResultsPluginExpressionBuilder < scriptgen.CodeBuilder
2+
% Copyright 2020 The MathWorks, Inc.
3+
4+
properties
5+
FilePath = '''results.mldatx'''
6+
end
7+
8+
methods
9+
function set.FilePath(obj, value)
10+
scriptgen.internal.validateTextScalar(value);
11+
obj.FilePath = value;
12+
end
13+
end
14+
end
15+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateSimulinkTestResultsPluginParallelExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateSimulinkTestResultsPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
classdef CreateSimulinkTestResultsPluginSerialExpressionBuilder < ...
2+
scriptgen.expressions.test.CreateSimulinkTestResultsPluginExpressionBuilder
3+
% Copyright 2022 The MathWorks, Inc.
4+
end
5+

0 commit comments

Comments
 (0)