Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@apexdevtools/apex-parser

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apexdevtools/apex-parser - npm Package Compare versions

Comparing version 4.3.1 to 4.4.0

6

lib/__tests__/SOQLParserTest.js

@@ -115,2 +115,8 @@ "use strict";

});
test("Time Literal", () => {
const [parser, errorCounter] = (0, SyntaxErrorCounter_1.createParser)('[SELECT Break__c,Check_Out__c FROM VMS_Time_Card_Item__c WHERE Time_Card__c =:timeCard.Id AND Check_Out__c = 01:00:00.000Z]');
const context = parser.soqlLiteral();
expect(context).toBeInstanceOf(ApexParser_1.SoqlLiteralContext);
expect(errorCounter.getNumErrors()).toEqual(0);
});
//# sourceMappingURL=SOQLParserTest.js.map

151

lib/ApexLexer.d.ts

@@ -181,77 +181,78 @@ import { ATN } from "antlr4ts/atn/ATN";

static readonly DateLiteral = 175;
static readonly DateTimeLiteral = 176;
static readonly IntegralCurrencyLiteral = 177;
static readonly FIND = 178;
static readonly EMAIL = 179;
static readonly NAME = 180;
static readonly PHONE = 181;
static readonly SIDEBAR = 182;
static readonly FIELDS = 183;
static readonly METADATA = 184;
static readonly PRICEBOOKID = 185;
static readonly NETWORK = 186;
static readonly SNIPPET = 187;
static readonly TARGET_LENGTH = 188;
static readonly DIVISION = 189;
static readonly RETURNING = 190;
static readonly LISTVIEW = 191;
static readonly FindLiteral = 192;
static readonly FindLiteralAlt = 193;
static readonly IntegerLiteral = 194;
static readonly LongLiteral = 195;
static readonly NumberLiteral = 196;
static readonly BooleanLiteral = 197;
static readonly StringLiteral = 198;
static readonly NullLiteral = 199;
static readonly LPAREN = 200;
static readonly RPAREN = 201;
static readonly LBRACE = 202;
static readonly RBRACE = 203;
static readonly LBRACK = 204;
static readonly RBRACK = 205;
static readonly SEMI = 206;
static readonly COMMA = 207;
static readonly DOT = 208;
static readonly ASSIGN = 209;
static readonly GT = 210;
static readonly LT = 211;
static readonly BANG = 212;
static readonly TILDE = 213;
static readonly QUESTIONDOT = 214;
static readonly QUESTION = 215;
static readonly COLON = 216;
static readonly EQUAL = 217;
static readonly TRIPLEEQUAL = 218;
static readonly NOTEQUAL = 219;
static readonly LESSANDGREATER = 220;
static readonly TRIPLENOTEQUAL = 221;
static readonly AND = 222;
static readonly OR = 223;
static readonly COAL = 224;
static readonly INC = 225;
static readonly DEC = 226;
static readonly ADD = 227;
static readonly SUB = 228;
static readonly MUL = 229;
static readonly DIV = 230;
static readonly BITAND = 231;
static readonly BITOR = 232;
static readonly CARET = 233;
static readonly MAPTO = 234;
static readonly ADD_ASSIGN = 235;
static readonly SUB_ASSIGN = 236;
static readonly MUL_ASSIGN = 237;
static readonly DIV_ASSIGN = 238;
static readonly AND_ASSIGN = 239;
static readonly OR_ASSIGN = 240;
static readonly XOR_ASSIGN = 241;
static readonly LSHIFT_ASSIGN = 242;
static readonly RSHIFT_ASSIGN = 243;
static readonly URSHIFT_ASSIGN = 244;
static readonly ATSIGN = 245;
static readonly Identifier = 246;
static readonly WS = 247;
static readonly DOC_COMMENT = 248;
static readonly COMMENT = 249;
static readonly LINE_COMMENT = 250;
static readonly TimeLiteral = 176;
static readonly DateTimeLiteral = 177;
static readonly IntegralCurrencyLiteral = 178;
static readonly FIND = 179;
static readonly EMAIL = 180;
static readonly NAME = 181;
static readonly PHONE = 182;
static readonly SIDEBAR = 183;
static readonly FIELDS = 184;
static readonly METADATA = 185;
static readonly PRICEBOOKID = 186;
static readonly NETWORK = 187;
static readonly SNIPPET = 188;
static readonly TARGET_LENGTH = 189;
static readonly DIVISION = 190;
static readonly RETURNING = 191;
static readonly LISTVIEW = 192;
static readonly FindLiteral = 193;
static readonly FindLiteralAlt = 194;
static readonly IntegerLiteral = 195;
static readonly LongLiteral = 196;
static readonly NumberLiteral = 197;
static readonly BooleanLiteral = 198;
static readonly StringLiteral = 199;
static readonly NullLiteral = 200;
static readonly LPAREN = 201;
static readonly RPAREN = 202;
static readonly LBRACE = 203;
static readonly RBRACE = 204;
static readonly LBRACK = 205;
static readonly RBRACK = 206;
static readonly SEMI = 207;
static readonly COMMA = 208;
static readonly DOT = 209;
static readonly ASSIGN = 210;
static readonly GT = 211;
static readonly LT = 212;
static readonly BANG = 213;
static readonly TILDE = 214;
static readonly QUESTIONDOT = 215;
static readonly QUESTION = 216;
static readonly COLON = 217;
static readonly EQUAL = 218;
static readonly TRIPLEEQUAL = 219;
static readonly NOTEQUAL = 220;
static readonly LESSANDGREATER = 221;
static readonly TRIPLENOTEQUAL = 222;
static readonly AND = 223;
static readonly OR = 224;
static readonly COAL = 225;
static readonly INC = 226;
static readonly DEC = 227;
static readonly ADD = 228;
static readonly SUB = 229;
static readonly MUL = 230;
static readonly DIV = 231;
static readonly BITAND = 232;
static readonly BITOR = 233;
static readonly CARET = 234;
static readonly MAPTO = 235;
static readonly ADD_ASSIGN = 236;
static readonly SUB_ASSIGN = 237;
static readonly MUL_ASSIGN = 238;
static readonly DIV_ASSIGN = 239;
static readonly AND_ASSIGN = 240;
static readonly OR_ASSIGN = 241;
static readonly XOR_ASSIGN = 242;
static readonly LSHIFT_ASSIGN = 243;
static readonly RSHIFT_ASSIGN = 244;
static readonly URSHIFT_ASSIGN = 245;
static readonly ATSIGN = 246;
static readonly Identifier = 247;
static readonly WS = 248;
static readonly DOC_COMMENT = 249;
static readonly COMMENT = 250;
static readonly LINE_COMMENT = 251;
static readonly WHITESPACE_CHANNEL = 2;

@@ -258,0 +259,0 @@ static readonly COMMENT_CHANNEL = 3;

{
"name": "@apexdevtools/apex-parser",
"version": "4.3.1",
"version": "4.4.0",
"author": "Apex Dev Tools Team <apexdevtools@gmail.com> (https://github.com/apex-dev-tools)",

@@ -5,0 +5,0 @@ "bugs": "https://github.com/apex-dev-tools/apex-parser/issues",

@@ -51,3 +51,3 @@ # apex-parser

<artifactId>apex-parser</artifactId>
<version>4.3.1</version>
<version>4.4.0</version>
</dependency>

@@ -57,3 +57,3 @@

"@apexdevtools/apex-parser": "^4.3.1"
"@apexdevtools/apex-parser": "^4.4.0"

@@ -60,0 +60,0 @@ ## Building

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc