API-CHANGES.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. 0.19.1:
  2. * Deprecate amber/boot api nextId, prop globalJsVariables.
  3. * Remove amber/boot prop reservedWords (with the hope no one uses it directly).
  4. * Deprecate ProtoObject >> identityHash.
  5. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  6. + AmberBootstrapInitialization class >>
  7. + run
  8. + initializeClasses
  9. + organizeClasses
  10. + organizeMethods
  11. + Behavior >>
  12. + basicOrganization
  13. + basicOrganization:
  14. + ClassOrganizer >>
  15. + theClass
  16. + ClassOrganizer class >>
  17. + on:
  18. + Compiler class >>
  19. + eval:
  20. + JavaScriptException >>
  21. + shouldBeStubbed
  22. + wrap
  23. + Message class >>
  24. + selector:arguments:notUnderstoodBy:
  25. + MethodContext >>
  26. + stubHere
  27. + stubToAtMost:
  28. + NonBooleanReceiver class >>
  29. + signalOn:
  30. + Package >>
  31. + evalBlock
  32. + evalBlock:
  33. + Package class >>
  34. + named:javaScriptDescriptor:
  35. + SmalltalkImage >>
  36. + packageDictionary
  37. + packageAt:ifPresent:
  38. + TBehaviorProvider >>
  39. + methodOrganizationEnter:andLeave:
  40. + TMasterBehavior >>
  41. + definedMethods
  42. + enterOrganization
  43. + leaveOrganization
  44. + Trait >>
  45. + basicOrganization
  46. + basicOrganization:
  47. + UndefinedObject >>
  48. + ==
  49. - Package >>
  50. - basicName:
  51. - basicImports
  52. - ProtoObject >>
  53. - isSameInstanceAs:
  54. - ObjectTest >>
  55. - testIdentityHash
  56. 0.19.0:
  57. * Remove class Thenable, add trait TThenable.
  58. * Behavior / Trait hierarchy uses traits.
  59. + NativeFunction class >>
  60. + isNativeFunction:
  61. + IRInstructions >>
  62. + isSelf
  63. + isSuper
  64. + IRVariable >>
  65. + isSelf
  66. + isSuper
  67. + ScopeVar >>
  68. + isSelf
  69. + isSuper
  70. + PseudoVar >>
  71. + isSelf
  72. + isSuper
  73. +UndefinedObject >>
  74. + identityHash
  75. + value
  76. - IRSend >>
  77. - isSuperSend
  78. 0.18.3:
  79. * Move {add,remove}Element from Array.prototype to kernel API.
  80. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  81. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  82. * Add class Trait as subclass of BehaviorBody.
  83. * Add class TraitTransformation.
  84. * Deprecate #asJSON in favour of #asJavaScriptObject.
  85. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  86. + BehaviorBody >>
  87. + setTraitComposition:
  88. + traitCompositionDefinition
  89. + traitUsers
  90. + allSubclassesDo:
  91. + superclass
  92. + Trait >>
  93. + allInstanceVariableNames
  94. + allSubclassesDo:
  95. + asJavascript
  96. + asTraitComposition
  97. + category
  98. + classTag
  99. + definition
  100. + package
  101. + superclass
  102. + theMetaClass
  103. + theNonMetaClass
  104. + exportBehaviorDefinitionTo:using:
  105. + traitUsers
  106. + package:
  107. + Trait class >>
  108. + named:package:
  109. + named:uses:package:
  110. + TraitTransformation >>
  111. + -
  112. + @
  113. + addAliases:
  114. + addExclusions:
  115. + aliases
  116. + asJSON
  117. + asJavascript
  118. + asTraitComposition
  119. + asTraitTransformation
  120. + definition
  121. + exclusions
  122. + initialize
  123. + postCopy
  124. + trait
  125. + trait:
  126. + Collection >>
  127. + copyWithout:
  128. + SequenceableCollection >>
  129. + reverseDo:
  130. + Array >>
  131. + asTraitComposition
  132. + amber/boot api >>
  133. + addElement
  134. + removeElement
  135. + wrapJavaScript
  136. + CharacterArray >>
  137. + asSymbolPrintOn:
  138. + symbolPrintString
  139. + String >>
  140. + isSelector
  141. + StringStream >>
  142. + print:
  143. + printSymbol:
  144. + Package >>
  145. + traitCompositions
  146. + Class >>
  147. + subClass:
  148. + subClass:uses:
  149. + subClass:uses:instanceVariables:
  150. + subClass:uses:instanceVariables:category:
  151. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  152. + subClass:uses:instanceVariables:package:
  153. + UndefinedObject >>
  154. + subClass:
  155. + subClass:uses:
  156. + subClass:uses:instanceVariables:
  157. + subClass:uses:instanceVariables:category:
  158. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  159. + subClass:uses:instanceVariables:package:
  160. + Metaclass >>
  161. + uses:instanceVariableNames:
  162. - Association >>
  163. - importsString
  164. - String >>
  165. - importsString
  166. - AbstractExporter
  167. - classNameFor:
  168. - Exporter >>
  169. - jsClassNameFor:
  170. 0.18.2:
  171. * Add Platform-DOM package with DOM-related stuff.
  172. * Platform-DOM not loaded by default. Packages that will use it will import it.
  173. + PlatformDom class >>
  174. + isFeasible
  175. + isDomNode:
  176. + newCustomEvent:detail:
  177. + toArray:
  178. + CharacterArray >>
  179. + asDomNode
  180. + Collection >>
  181. + asDomNode
  182. + JSObjectProxy >>
  183. + asDomNode
  184. + String >>
  185. + htmlTextContent
  186. 0.18.1:
  187. + ASTNode >>
  188. + withTail:
  189. - SendNode >>
  190. - valueWithReceiver:
  191. 0.18.0:
  192. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  193. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  194. * Some internal API changes in Compiler-* (including the move to DAG-node).
  195. - Object >>
  196. - throw:
  197. 0.17.0:
  198. * Remove classes InterfacingObject, PlatformInterface.
  199. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  200. + amber/boot api >>
  201. + nilAsReceiver
  202. - NativeFunction class >>
  203. - constructor:
  204. - constructor:value:
  205. - constructor:value:value:
  206. - constructor:value:value:value:
  207. 0.16.1:
  208. * Deprecate $boot.dnu (use $boot.nilAsClass).
  209. + amber/boot api >>
  210. + nilAsClass
  211. 0.16.0:
  212. * Deprecate ClassBuilder >> setupClass:
  213. * $core.initialize now returns a Promise
  214. * $core.addClass now returns the class
  215. + amber/boot api >>
  216. + send2
  217. + traverseClassTree
  218. + Promise class >>
  219. + new
  220. - amber/boot api >>
  221. - wrapClassName
  222. - send
  223. - allSubclasses
  224. - AbstractCodeGenerator >>
  225. - classNameFor:
  226. 0.15.1:
  227. * Thenable class added
  228. * Promise class added, wraps JS Promise, subclass of Thenable
  229. + Thenable >>
  230. + catch:
  231. + on:do:
  232. + on:do:catch:
  233. + then:
  234. + then:catch:
  235. + then:on:do:
  236. + then:on:do:catch:
  237. + JSObjectProxy >>
  238. + catch:
  239. + on:do:
  240. + on:do:catch:
  241. + then:
  242. + then:catch:
  243. + then:on:do:
  244. + then:on:do:catch:
  245. + amber/boot api >>
  246. + seamless
  247. + Promise class >>
  248. + new:
  249. + forBlock:
  250. + value:
  251. + signal:
  252. + all:
  253. + any:
  254. 0.14.18:
  255. * Some internal API changes in Compiler-*.
  256. 0.14.14:
  257. * InterfacingObject >> ajax: deprecated
  258. * PlatformInterface class deprecated
  259. * Class BrowserInterface removed
  260. * Class Terminal, BrowserTerminal added
  261. * Class Platform, BrowserPlatform added
  262. + Environment >>
  263. + renamePackage:to:
  264. + Platform class >>
  265. + globals
  266. + newXhr
  267. + Terminal class >>
  268. + alert:
  269. + confirm:
  270. + prompt:
  271. + prompt:default:
  272. SmalltalkImage >>
  273. + existsJsGlobal:
  274. - PlatformInterface class >>
  275. - initialize
  276. - setWorker:
  277. 0.14.12:
  278. + JSObjectProxy >>
  279. + putOn:
  280. + ProtoStream >>
  281. + nextPutJSObject:
  282. 0.14.11:
  283. * Basic streaming protocol extracted from Stream to ProtoStream
  284. + Object >>
  285. + in:
  286. + JSObjectProxy >>
  287. + in:
  288. 0.14.10:
  289. + JSObjectProxy class >>
  290. + addObjectVariablesTo:ofProxy:
  291. + compareJSObjectOfProxy:withProxy:
  292. + forwardMessage:withArguments:ofProxy:
  293. + jsObject:ofProxy:
  294. + lookupProperty:ofProxy:
  295. - JSObjectProxy >>
  296. - jsObject:
  297. - lookupProperty:
  298. - compareJSObjectWith:
  299. - addObjectVariablesTo:
  300. - forwardMessage:withArguments:
  301. 0.14.4:
  302. + AmdExporter >>
  303. + importsForOutput:
  304. + AbstractCodeGenerator >>
  305. + currentPackage
  306. + currentPackage:
  307. + Compiler >>
  308. + currentPackage
  309. + currentPackage:
  310. + compile:forClass:protocol:
  311. + compileNode:forClass:package:
  312. + SemanticAnalyzer >>
  313. + thePackage
  314. + thePackage:
  315. + isVariableUndefined:inPackage:
  316. - Compiler >>
  317. - compile:
  318. - compile:forClass:
  319. - compileExpression:
  320. - SemanticAnalyzer >>
  321. - isVariableGloabllyUndefined:
  322. - Behavior >>
  323. - compile:
  324. 0.14.3:
  325. * #heliosClass is now #classTag
  326. + Compiler >>
  327. + eval:forPackage:
  328. + Behavior >>
  329. + packageOfProtocol:
  330. + Exporter >>
  331. + exportPackageContextOf:on:
  332. + exportPackageImportsOf:on:
  333. + Package >>
  334. + basicImports
  335. + imports
  336. + imports:
  337. + importsDefinition
  338. + importsFromJson:
  339. + importsAsJson
  340. + sortedImportsAsArray
  341. + validateImports:
  342. + Package class >>
  343. + named:imports:transport:
  344. + Association >>
  345. + importsString
  346. + String >>
  347. + importsString
  348. + ProtoObject >>
  349. + ifNil:
  350. + ifNil:ifNotNil:
  351. + ifNotNil:
  352. + ifNotNil:ifNil:
  353. + isNil
  354. + notNil
  355. - Object >>
  356. - ifNil:
  357. - ifNil:ifNotNil:
  358. - ifNotNil:
  359. - ifNotNil:ifNil:
  360. - isNil
  361. - notNil
  362. 0.14.1:
  363. * NativeFunction class >> constructor:[value:...] deprecated
  364. + NativeFunction class >>
  365. + constructorNamed:
  366. + constructorNamed:value:
  367. + constructorNamed:value:value:
  368. + constructorNamed:value:value:value:
  369. + constructorOf:
  370. + constructorOf:value:
  371. + constructorOf:value:value:
  372. + constructorOf:value:value:value:
  373. + functionNamed:
  374. + functionNamed:value:
  375. + functionNamed:value:value:
  376. + functionNamed:value:value:value:
  377. + functionNamed:valueWithArgs:
  378. + functionOf:
  379. + functionOf:value:
  380. + functionOf:value:value:
  381. + functionOf:value:value:value:
  382. + functionOf:valueWithArgs:
  383. + methodOf:this:
  384. + methodOf:this:value:
  385. + methodOf:this:value:value:
  386. + methodOf:this:value:value:value:
  387. + methodOf:this:valueWithArgs:
  388. + SmalltalkImage >>
  389. + optOut:
  390. + cancelOptOut:
  391. 0.14.0:
  392. + Object >>
  393. + asJQuery
  394. + asJQueryInContext:
  395. + BlockClosure >>
  396. + asJQuery
  397. + asJQueryInContext:
  398. - AnnouncementSubscription >>
  399. - block
  400. - block:
  401. - Collection >>
  402. - contains:
  403. - String >>
  404. - asSelector
  405. - asJavaScriptSelector
  406. - SmalltalkImage >>
  407. - at:
  408. - at:ifAbsent:
  409. - at:put:
  410. - current
  411. - vm
  412. - createPackage:properties:
  413. - MethodContext >>
  414. - temps
  415. - Object >>
  416. - try:catch:
  417. 0.13.2:
  418. + SourceArea class >>
  419. + codeMirror
  420. 0.13.1:
  421. * String >> asSelector is now String >> asJavaScriptMethodName
  422. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  423. * smalltalk.selector is now smalltalk.st2js
  424. * smalltalk.convertSelector is now smalltalk.js2st
  425. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  426. * Smalltalk vm is now Smalltalk core
  427. * boot.js's .vm is now .api
  428. * amber load sets' .vm is now .api
  429. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  430. + smalltalk.
  431. + accessJavaScript
  432. + Object >>
  433. + postMessageTo:
  434. + postMessageTo:origin:
  435. + Class >>
  436. + heliosClass
  437. + SmalltalkImage >>
  438. + core
  439. + amber/boot exports
  440. + api
  441. + amber/{devel,deploy,lang} exports
  442. + api
  443. - ProtoObject class >>
  444. - heliosClass
  445. - Object class >>
  446. - heliosClass
  447. 0.12.6:
  448. + String >>
  449. + value:
  450. + ProtocolAnnouncement >>
  451. + package
  452. + Behavior >>
  453. + isTestClass
  454. + Package >>
  455. + isTestPackage
  456. + amber/{devel,deploy,lang} exports
  457. + nil
  458. + amber/helpers exports
  459. + nil
  460. 0.12.4:
  461. * Package Canvas renamed to Web
  462. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  463. + Announcer >>
  464. + on:do:for:
  465. + Node >>
  466. + navigationNodeAt:ifAbsent:
  467. + BlockClosure >>
  468. + tryCatch:
  469. + Environment >>
  470. + evaluate:for:
  471. + AmberCli >>
  472. + version:
  473. + Object >>
  474. + deprecatedAPI:
  475. - Environment >>
  476. - eval:on:
  477. - evaluateString:on:
  478. 0.12.3:
  479. * Package Import-Export renamed to Kernel-ImportExport
  480. * A dozen of methods moved from Object to ProtoObject
  481. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  482. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  483. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  484. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  485. * Smalltalk current deprecated in favour of Smalltalk
  486. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  487. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  488. + CompiledMethod >>
  489. + defaultProtocol
  490. + Behavior >>
  491. + compile:protocol:
  492. + removeProtocolIfEmpty:
  493. + Package >>
  494. + load
  495. + loadFromNamespace:
  496. + Package class >>
  497. + load:
  498. + load:fromNamespace:
  499. + PackageTransport >> load
  500. + PackageHandler >> load:
  501. + AmdPackageHandler >> load:
  502. + Set >> removeAll
  503. + AssociativeCollection class
  504. + BucketStore class
  505. + SmalltalkImage >>
  506. + globals
  507. + vm
  508. + settings
  509. + Setting class
  510. + String >>
  511. + asSetting
  512. + asSettingIfAbsent:
  513. + settingValue
  514. + settingValueIfAbsent:
  515. + settingValue:
  516. + Smalltalk global variable
  517. - CompiledMethod >>
  518. - category: (use #protocol:)
  519. - defaultCategory
  520. - Behavior >> compile:category:
  521. - HTMLCanvas class >>
  522. - browserVersion
  523. - isMSIE
  524. - isMozilla
  525. - isOpera
  526. - isWebkit
  527. 0.12.2:
  528. * Collection >> contains: is deprecated in favor of anySatisfy:
  529. + Announcer >> on:doOnce:
  530. + String >>
  531. + uriEncoded
  532. + uriDecoded
  533. + uriComponentEncoded
  534. + uriComponentDecoded
  535. + Collection >>
  536. + removeAll
  537. + ifEmpty:ifNotEmpty:
  538. + ifNotEmpty:ifEmpty:
  539. + anyOne
  540. + noneSatisfy:
  541. + anySatisfy:
  542. + allSatisfy:
  543. 0.12.0:
  544. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  545. * Existing classes moved to new KernelInfrastructure package
  546. * ImporterExporter
  547. * are now StreamExporters
  548. * aware of AMD namespaces
  549. * support transport types and commit channels
  550. + Node >>
  551. + nextChild
  552. + method
  553. + postCopy
  554. + isCascadeNode
  555. + isLastChild
  556. + BlockNode >>
  557. + nextNode:
  558. + nextChild
  559. + SendNode >>
  560. + isCascadeSendNode
  561. + shouldBeAliased
  562. + CompiledMethod >> sendTo:arguments:
  563. + Array >>
  564. + addFirst:
  565. + removeLast
  566. + Number >>
  567. + ceiling
  568. + floor
  569. + asNumber
  570. + //
  571. + cos
  572. + sin
  573. + tan
  574. + arcCos
  575. + arcSin
  576. + arcTan
  577. + log
  578. + log:
  579. + raisedTo:
  580. + sign
  581. + **
  582. + ln
  583. + e
  584. + String class >> esc
  585. + String >>
  586. + asMutator
  587. + capitalized
  588. + isCapitalized
  589. + JSProxy >> printString
  590. + Behavior >>
  591. + ownProtocols
  592. + ownMethods
  593. + JSStream >> nextPutSendIndexFor:
  594. + InterfacingObject class
  595. + Interpreter class
  596. + DocumentFragmentTag class
  597. + AbstractExporter class
  598. + PlatformInterface class
  599. - Node >> extent
  600. - JSStream >> nextPutStatement:with:
  601. - Smalltalk.installSuperclass()
  602. - ClassReferenceNode class (now handled via VariableNode)
  603. 0.11.0:
  604. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  605. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  606. * Object>>printString
  607. * replace >>printString with >>printOn:
  608. * replace >>storeString with >>printString
  609. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  610. * Package>>fetch: is now Package>>load:
  611. * Package>>fetch:prefix: is now Package>>load:prefix:
  612. * Queue>>front replaced by Queue>>next
  613. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  614. * Queue>>back: replaced by Queue>>nextPut:
  615. * smalltalk.addMethod() does not use explicit JS selector
  616. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  617. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  618. * String>>asJavaScriptSelector moved to Kernel-Objects package
  619. + Object>>asString
  620. + Object>>putOn:
  621. + String>>isVowel
  622. + Collection>>putOn:
  623. + CharacterArray>>putOn:
  624. + Stream>><<
  625. + Stream>>write
  626. + SequenceableCollection>>newStream
  627. + SequenceableCollection>>readStream
  628. + SequenceableCollection>>stream
  629. + SequenceableCollection>>streamClass
  630. + SequenceableCollection>>writeStream
  631. + Collection>>isImmutable
  632. + Stream>>nextPutString:
  633. + StringStream>>nextPutString:
  634. + JSStream>>nextPutClassRefFunction:
  635. + String>>crlfSanitized
  636. + inlined Block now also responds to >>value:
  637. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  638. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  639. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  640. + Parser: Symbols for binarie selectores
  641. + Package>>commit
  642. + AIContext>>initializeLocals
  643. + ASTInterpreter>>withBlockContext:
  644. + smalltalk.allSelectors()
  645. + Object>>isCompiledMethod
  646. + Object>>isPackage
  647. + Object>>isBehavior
  648. + ClassMoved Announcemen class
  649. + Behavior>>includesBehavior:
  650. + Environment>>classes
  651. + Environment>>allSelectors
  652. + Environment>>removeProtocol:
  653. + Environment>>renameProtocol:to:in:
  654. + CompiledMethod>>protocol:
  655. + Smalltalk>>globalJsVariables
  656. + Smalltalk>>addGlobalJsVariable:
  657. + Smalltalk>>deleteGlobalJsVariable:
  658. - Object>>storeOn:
  659. - Object>>log:block:
  660. - Object>>printNl
  661. - Compiler-IR.st >>javascriptSelector
  662. - Compiler-IR.st >>nextPutVar:
  663. - Kernel-Collections.st >>asSuperSelector
  664. - Collection>>readStream
  665. - Collection>>stream
  666. - Collection>>streamClass
  667. - Collection>>writeStream
  668. - Symbol class (replaced with String)
  669. - IRInlinedNonLocalReturn class
  670. - IRInlinedSend>>nonLocalReturnInliner
  671. - IRNonLocalReturnInliner class
  672. - Package>>dependencies
  673. - Package>>dependencies:
  674. - Package>>properties
  675. - Package>>jsProperties
  676. - Package>>jsProperties:
  677. - Package>>propertiesAsJSON
  678. - Package>>propertyAt:
  679. - Package>>propertyAt:ifAbsent:
  680. - Package>>propertyAt:put:
  681. - Browser>>ajaxPutAt:data: