This repository has been archived by the owner on Apr 7, 2024. It is now read-only.
forked from pgonzaleznetwork/forcemula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e45898
commit f17d79a
Showing
15 changed files
with
550 additions
and
514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{"total": {"lines":{"total":212,"covered":210,"skipped":0,"pct":99.05},"statements":{"total":244,"covered":240,"skipped":0,"pct":98.36},"functions":{"total":49,"covered":49,"skipped":0,"pct":100},"branches":{"total":103,"covered":99,"skipped":0,"pct":96.11},"branchesTrue":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/ValueTypes.js": {"lines":{"total":11,"covered":11,"skipped":0,"pct":100},"functions":{"total":1,"covered":1,"skipped":0,"pct":100},"statements":{"total":11,"covered":11,"skipped":0,"pct":100},"branches":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
{"total": {"lines":{"total":213,"covered":211,"skipped":0,"pct":99.06},"statements":{"total":245,"covered":242,"skipped":0,"pct":98.77},"functions":{"total":49,"covered":49,"skipped":0,"pct":100},"branches":{"total":103,"covered":100,"skipped":0,"pct":97.08},"branchesTrue":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/MetadataTypes.js": {"lines":{"total":11,"covered":11,"skipped":0,"pct":100},"functions":{"total":1,"covered":1,"skipped":0,"pct":100},"statements":{"total":11,"covered":11,"skipped":0,"pct":100},"branches":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/parseTypes.js": {"lines":{"total":48,"covered":48,"skipped":0,"pct":100},"functions":{"total":3,"covered":3,"skipped":0,"pct":100},"statements":{"total":49,"covered":49,"skipped":0,"pct":100},"branches":{"total":40,"covered":40,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/utils.js": {"lines":{"total":6,"covered":6,"skipped":0,"pct":100},"functions":{"total":5,"covered":5,"skipped":0,"pct":100},"statements":{"total":11,"covered":11,"skipped":0,"pct":100},"branches":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/mappings/cpq.js": {"lines":{"total":1,"covered":1,"skipped":0,"pct":100},"functions":{"total":0,"covered":0,"skipped":0,"pct":100},"statements":{"total":1,"covered":1,"skipped":0,"pct":100},"branches":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/parser/grammar.js": {"lines":{"total":21,"covered":21,"skipped":0,"pct":100},"functions":{"total":0,"covered":0,"skipped":0,"pct":100},"statements":{"total":21,"covered":21,"skipped":0,"pct":100},"branches":{"total":0,"covered":0,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/parser/grammarChecks.js": {"lines":{"total":29,"covered":29,"skipped":0,"pct":100},"functions":{"total":20,"covered":20,"skipped":0,"pct":100},"statements":{"total":47,"covered":45,"skipped":0,"pct":95.74},"branches":{"total":11,"covered":9,"skipped":0,"pct":81.81}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/parser/grammarChecks.js": {"lines":{"total":30,"covered":30,"skipped":0,"pct":100},"functions":{"total":20,"covered":20,"skipped":0,"pct":100},"statements":{"total":48,"covered":47,"skipped":0,"pct":97.91},"branches":{"total":11,"covered":10,"skipped":0,"pct":90.9}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/lib/parser/transformations.js": {"lines":{"total":40,"covered":40,"skipped":0,"pct":100},"functions":{"total":13,"covered":13,"skipped":0,"pct":100},"statements":{"total":46,"covered":46,"skipped":0,"pct":100},"branches":{"total":14,"covered":14,"skipped":0,"pct":100}} | ||
,"/Users/pgonzalez/Documents/apps/sfdc-formula-parser/src/index.js": {"lines":{"total":56,"covered":54,"skipped":0,"pct":96.42},"functions":{"total":7,"covered":7,"skipped":0,"pct":100},"statements":{"total":58,"covered":56,"skipped":0,"pct":96.55},"branches":{"total":38,"covered":36,"skipped":0,"pct":94.73}} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = class MetadataType { | ||
|
||
static CUSTOM_FIELD = new MetadataType("customFields") | ||
static STANDARD_FIELD = new MetadataType("standardFields") | ||
static CUSTOM_OBJECT = new MetadataType("customObjects") | ||
static STANDARD_OBJECT = new MetadataType("standardObjects") | ||
static CUSTOM_LABEL = new MetadataType("customLabels") | ||
static CUSTOM_SETTING = new MetadataType("customSettings") | ||
static CUSTOM_METADATA_TYPE_RECORD = new MetadataType("customMetadataTypeRecords") | ||
static CUSTOM_METADATA_TYPE = new MetadataType("customMetadataTypes") | ||
static UNKNOWN_RELATIONSHIP = new MetadataType("unknownRelationships") | ||
|
||
constructor(name) { | ||
this.name = name | ||
} | ||
|
||
} |
Oops, something went wrong.