forked from newapplesho/mixpanel-smalltalk
-
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.
Merge pull request #17 from sorabito/develop
Develop
- Loading branch information
Showing
21 changed files
with
80 additions
and
8 deletions.
There are no files selected for viewing
3 changes: 1 addition & 2 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlIdentifier.class/instance/prop..st
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,4 +1,3 @@ | ||
accessing | ||
prop: propName | ||
self accessor ifNil: [ self accessor: (MixpanelJqlIdentifier of: propName) ] | ||
ifNotNil: [ self accessor prop: propName ] | ||
self accessor: propName |
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
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/class/of.prop..st
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,3 @@ | ||
instance creation | ||
of: identifier prop: prop | ||
^ self new identifier: identifier; prop: 'properties'; prop: prop |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/^less.equals.st
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,3 @@ | ||
adding | ||
<= anObject | ||
self operator: '<=' operand: anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/^less.st
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,3 @@ | ||
adding | ||
< anObject | ||
self operator: '<' operand: anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/^more.equals.st
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,3 @@ | ||
adding | ||
>= anObject | ||
self operator: '>=' operand: anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/^more.st
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,3 @@ | ||
adding | ||
> anObject | ||
self operator: '>' operand: anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/equals..st
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,3 @@ | ||
adding | ||
equals: anObject | ||
self operator: '==' operand: anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/isFalse.st
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,3 @@ | ||
adding | ||
isFalse | ||
self equals: (MixpanelJqlIdentifier of: 'false') |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/isTrue.st
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,3 @@ | ||
adding | ||
isTrue | ||
self equals: (MixpanelJqlIdentifier of: 'true') |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/notEquals..st
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,3 @@ | ||
adding | ||
notEquals: anObject | ||
self operator: '!=' operand: anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/operand..st
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,3 @@ | ||
accessing | ||
operand: anObject | ||
operand := anObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/operand.st
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,3 @@ | ||
accessing | ||
operand | ||
^ operand |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/operator..st
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,3 @@ | ||
accessing | ||
operator: anObject | ||
operator := anObject |
3 changes: 3 additions & 0 deletions
3
...repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/operator.operand..st
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,3 @@ | ||
adding | ||
operator: aString operand: anObject | ||
self operator: aString; operand: (anObject asMixpanelJqlKey) asMixpanelJqlObject |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/operator.st
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,3 @@ | ||
accessing | ||
operator | ||
^ operator |
4 changes: 4 additions & 0 deletions
4
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/prop..st
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,4 @@ | ||
accessing | ||
prop: propName | ||
self accessor ifNil: [ self accessor: (MixpanelJqlProperties identifier: propName) ] | ||
ifNotNil: [ self accessor prop: propName ] |
7 changes: 7 additions & 0 deletions
7
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/instance/tokensOn..st
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,7 @@ | ||
printing | ||
tokensOn: tokens | ||
super tokensOn: tokens. | ||
((self operator notNil) and: [ self operand notNil ]) ifTrue: [ | ||
tokens spacedAdd: self operator. | ||
self operand tokensOn: tokens. | ||
] |
21 changes: 19 additions & 2 deletions
21
pharo-repository/Mixpanel-Jql.package/MixpanelJqlProperties.class/methodProperties.json
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,7 +1,24 @@ | ||
{ | ||
"instance" : { }, | ||
"instance" : { | ||
">" : "KazunoriUeda 4/17/2019 12:21", | ||
">=" : "KazunoriUeda 4/17/2019 12:21", | ||
"operator:" : "KazunoriUeda 4/17/2019 12:01", | ||
"equals:" : "KazunoriUeda 4/17/2019 12:23", | ||
"isTrue" : "KazunoriUeda 4/17/2019 12:25", | ||
"isFalse" : "KazunoriUeda 4/17/2019 12:26", | ||
"prop:" : "KazunoriUeda 4/17/2019 11:56", | ||
"notEquals:" : "KazunoriUeda 4/17/2019 12:28", | ||
"operator:operand:" : "KazunoriUeda 4/17/2019 12:18", | ||
"operator" : "KazunoriUeda 4/17/2019 12:01", | ||
"operand:" : "KazunoriUeda 4/17/2019 12:01", | ||
"<" : "KazunoriUeda 4/17/2019 12:21", | ||
"<=" : "KazunoriUeda 4/17/2019 12:21", | ||
"operand" : "KazunoriUeda 4/17/2019 12:01", | ||
"tokensOn:" : "KazunoriUeda 4/17/2019 12:13" | ||
}, | ||
"class" : { | ||
"of:" : "KazunoriUeda 4/16/2019 12:39", | ||
"prop:" : "KazunoriUeda 4/16/2019 12:41" | ||
"prop:" : "KazunoriUeda 4/16/2019 12:41", | ||
"of:prop:" : "KazunoriUeda 4/17/2019 11:51" | ||
} | ||
} |
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
4 changes: 2 additions & 2 deletions
4
pharo-repository/Mixpanel-Jql.package/monticello.meta/version
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,3 +1,3 @@ | ||
(name 'Mixpanel-Jql-KazunoriUeda.1555393623' message 'empty log message' id '46bf235c-0343-0d00-b4ef-6a270f8f733e' date '16 April 2019' time '5:33:27.048407 pm' author 'KazunoriUeda' ancestors ((name 'Mixpanel-Jql-KazunoriUeda.1555393622' message 'empty log message' id 'bf3a655b-0343-0d00-b4ed-c25d0f8f733e' date '16 April 2019' time '5:33:14.562501 pm' author 'KazunoriUeda' ancestors ((name 'Mixpanel-Jql-GitHub.1555393621' message 'Merge pull request #13 from sorabito/develop | ||
(name 'Mixpanel-Jql-KazunoriUeda.1555403890' message 'empty log message' id 'f8ee5a3d-1343-0d00-9b37-18b905d5407a' date '17 April 2019' time '12:30:10.047845 pm' author 'KazunoriUeda' ancestors ((name 'Mixpanel-Jql-GitHub.1555403889' message 'Merge pull request #15 from sorabito/develop | ||
|
||
ãã¡ã¤ã«ã®åé¤æ¼ãã' id 'a0c2a8c6-61c3-5b6c-92a4-1ad59e65b026' date '16 April 2019' time '5:47:01 am' author 'GitHub' ancestors () stepChildren ())) stepChildren ())) stepChildren ()) | ||
Develop' id '1fc1a5c2-0350-5855-b379-a56902c6d77c' date '16 April 2019' time '8:38:09 am' author 'GitHub' ancestors () stepChildren ())) stepChildren ()) |