Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
accessing - basic
at: aString
^ claims at: aString
at: aString

^ strict
ifTrue: [ claims at: aString ]
ifFalse: [ claims at: aString ifAbsent: [ ] ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
public
beLenient

strict := false
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
public
beStrict

strict := true
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
initialize
initialize
super initialize.
claims := Dictionary new.
claims := Dictionary new.
strict := true
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"pools" : [ ],
"classvars" : [ ],
"instvars" : [
"claims"
"claims",
"strict"
],
"name" : "JWTClaimsSet",
"type" : "normal"
Expand Down